Example - Points and Histogram
![]() |
### Using a toy data set due to example data sets not having more than one Y variable #pdf(file="F:/Website/yyplot/base/baseyy-points-large.pdf", width = 8.5, height = 11)
### Import Data require(datasets) head(swiss) ### End Import
### Make Y~Y Plot
yyplot(
x.column = "Examination",
y.column = "Infant.Mortality",
data=swiss,
title.of.all.plots = "Swiss Dataset",
xlab="Examination",
ylab="Infant Mortality",
color.of.middle.plot = color.gen("black","grey",3)
)
#dev.off()