Displaying 1 result from an estimated 1 matches for "olgmlt".
Did you mean:
gmlt
2011 Oct 13
1
Axis Formats with library(car)
...etting shows the axis (x and y) in scientific notation. I want to have
the axis represented by regular integers (for eg. the X axis i want the
upper bound to show as 40,000,000 instead of 4.0e+07). Scanning the r-help
archives did not get me the answer.
I have uploaded my data here: http://bit.ly/olgMLt (scatter_example.csv).
The resulting graph is shown here:
http://bit.ly/r8XxUA(business_orig_scatterplot.pdf). My code is as
follows:
estimation_data <- read.csv("scatter_example.csv",head=TRUE,sep=",")
library(car)
scatterplot(Bus_Orig ~ POP1995, data=estimation_data,...