Hey Gang,
Here is the situation. First of all I am a newbie, in the arena of R, so please bare with me. I am trying to make a plot with a series of plot lines that uses logs on the x axis, and when I plot it I am having a few odd things go on that I do not know how to correct.
On all of these I am assuming that there are easy resolutions, but with me not knowing everything about R it isn't apparent to me what the problems are.
Here is my code:
png(imageFilename, width = 480, height = 360) par(cex = 0.75) plot(type = "s", y = control_Table, x = p_USER_Table, xlab =
axTicks(side = 1, log = True) points(type = "s", y = control_Table, x = p_PMF_Table, col = "#00c000") points(type = "s", y = control_Table, x = p_GOLD_Table, col = "#0080ff") points(type = "s", y = control_Table, x = p_CHEMSCORE_Table, col = "#c000ff") points(type = "s", y = control_Table, x = p_AUTODOCK_Table, col = "#00eeee") points(type = "s", y = control_Table, x = p_DOCK_Table, col = "#c04000") points(type = "s", y = control_Table, x = p_DFIRE_Table, col =
"#eeee00")
lines(type = "l", x = control_Table, y = perfect_Table, col = "#2020c0") lines(type = "l", x = control_Table, y = control_Table, col = "#ffc020") legend("topleft", ["USER", "PMF", "GOLD", "CHEMSCORE",
dev_off()
BTW if my code looks a bit odd it is because I am actually programing through rpy, which is an interface that allows python to talk to R.
Thanks for all the help,
Patrick Jackson
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Wed 02 Jul 2008 - 19:30:59 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-help. Please read the posting guide before posting to the list.