Displaying 1 result from an estimated 1 matches for "shotscatter".
2009 Jun 09
1
scatterplot (car) legend modification
...ckage to do some scatterplots with ellipses
hoping to add the area and center points of each ellipse to the legend?
looking for some direction / ideas.... here is the script, the data is
where
golf shots end up by club.
x (dispersion), y (distance), group (Club)
thanks, sam
## usage: Rscript shotScatter.R infile outfile level1 level2 minX maxX
minY maxY
## load the library
library(car)
## get the args
args = commandArgs(TRUE);
## get the data format is: x, y, group
Shot_Data <- read.table(args[1],
sep = ",",
header=T)...