[R-SIG-Mac] Question about stripchart

2021-02-01 Thread Parkhurst, David F.
I have E. coli data (variable �conc�) for 73 dates over months from Apr through Dec (variable �monames�). The data are in order from the April through December, and are in a data.frame titled "monamescon�. When I run stripchart(conc~monames, data=monamescon, vert=TRUE), the months come out in

Re: [R-SIG-Mac] Question about stripchart

2021-02-01 Thread Richard M. Heiberger
month.factor <- factor(month.name, month.name) > month.name [1] "January" "February" "March" "April" "May" "June" [7] "July" "August""September" "October" "November" "December" > class(month.name) [1] "character" > month.factor <- factor(month.name, month.name) > le