R
R: Plots for Intel Xeon 7500 Comparison
Basic feature comparisons (e.g. amount of L3 cache):
Xeon 7500-series L3 Cache
png( filename="plot.png", width=640, height=440, bg="#070707" );
par(bg="#070707", fg="white", col.axis="white", col.main="white", col.lab="white", mar=c(3,4,2,2) + 0.1);
plot(xeon$Model, xeon$L3.Cache, ylab="L3 Cache", border=brewer.pal(8, "Dark2"), cex.axis=1.3, cex.lab=1.5);
dev.off();
Two-factor comparisons (e.g. with and without turbo boost):
Xeon 7500-series Processor Frequency
png( filename="plot.png", width=640, height=440, bg="#070707" );
par(bg="#070707", fg="white", col.axis="white", col.main="white", col.lab="white", mar=c(3,4,2,2) + 0.1);
plot(xeon$Model, xeon$Frequency, ylab="Processor Frequency", ylim=c(1.8,2.8), border=brewer.pal(8, "Dark2"), cex.axis=1.3, cex.lab=1.5)
points(rev(xeon$Frequency..Turbo.), col=brewer.pal(8, "Dark2"), pch=19)
dev.off();
Required packages: RColorBrewer
R Tricks, Tips, Scripts
I've loved R since the first time I used it in statistics class. I went several years without using it, but I probably should have pulled it out a few times. It's incredibly powerful and ends up being quite fun for data visualization geeks. Unfortunately, it's not intuitive to a lot of users.
Further, even those of us comfortable with it seem to quickly forget exactly how we displayed the data just the way we wanted last time. I'm going to post the tricks/scripts I write whenever I use R - both for others and myself to re-use. Just click on the tag "R".
