Simple scatter plot of x versus y with histograms of each
Shows scatterplot of x vs y with histograms of each on sides of graph. As in the example from layout.
simple.scatterplot(x, y, ...)
x
: data vectory
: data vector...
: passed to plot commandReturns the plot
John Verzani
layout
x<-sort(rnorm(100)) y<-sort(rt(100,3)) simple.scatterplot(x,y)
Useful links