Home
News
Feed
search engine
by
freefind
advanced
adjusting the scale of a plot
2013-12-01
azim58 - adjusting the scale of a plot some info here: http://rtutorialseries.blogspot.com/2009/11/r-tutorial-series-scatterplots. html use the xlim and ylim attributes example enrollmentData <- read.csv("C:/kurt/storage/CIM Research Folder/DR/2013/3-9-13/work on paper/dataset_plot_labelingPoints.csv") plot(enrollmentData$YEAR, enrollmentData$UNEM, xlim=c(0,20),ylim=c(0,20))
azim58wiki: