Description Usage Format Examples
A cooked data tailor made for the use of scatter plots towards understanding correlations.
1 |
A data frame with 200 observations on the following 12 variables.
x1x of Sample 1
y1y of Sample 1
x2x of Sample 2
y2y of Sample 2
x3x of Sample 3
y3y of Sample 3
x4x of Sample 4
y4y of Sample 4
x5x of Sample 5
y5y of Sample 5
x6x of Sample 6
y6y of Sample 6
1 2 3 4 5 6 7 8 9 | data(somesamples)
attach(somesamples)
par(mfrow=c(2,3))
plot(x1,y1,main="Sample I",xlim=c(-4,4),ylim=c(-4,4))
plot(x2,y2,main="Sample II",xlim=c(-4,4),ylim=c(-4,4))
plot(x3,y3,main="Sample III",xlim=c(-4,4),ylim=c(-4,4))
plot(x4,y4,main="Sample IV",xlim=c(-4,4),ylim=c(-4,4))
plot(x5,y5,main="Sample V",xlim=c(-4,4),ylim=c(-4,4))
plot(x6,y6,main="Sample VI",xlim=c(-4,4),ylim=c(-4,4))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.