Philip Rhoades
2012-Apr-03 05:19 UTC
[R] A trivial plot gives open circles as the plot char but another one gives me "q"s . . why is this?
People, On my home computer with a real plot I get what I expect - open circles as the plot character - on my work computer I get "q"s ! So I tried a trivial test plot on the work computer ie: a <- c(1,2,3,4,5) b <- c(1,2,3,4,5) plot(a,b) and that also gives me open circles as it should! - the plot line in my real script is: plot( means5[ ,4 ], means6[ ,4 ], xlab="640loci-50reps Gen4(-1) Rst", ylab="ADf" ) I have tried adding the "pch=x" command with no effect . . what is going on? (Both computers have the same fonts installed although the home computer is Fedora 16 and the work one is Fedora 15). It is very frustrating . . Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au
peter dalgaard
2012-Apr-03 07:32 UTC
[R] A trivial plot gives open circles as the plot char but another one gives me "q"s . . why is this?
On Apr 3, 2012, at 07:19 , Philip Rhoades wrote:> People, > > On my home computer with a real plot I get what I expect - open circles as the plot character - on my work computer I get "q"s ! So I tried a trivial test plot on the work computer ie: >Argh. I have forgotten this before... There was a configuration issue leading to plotting symbols showing up as "q", but I can't recall the details. Possibly libpango-related (do you have it installed?) -pd> a <- c(1,2,3,4,5) > b <- c(1,2,3,4,5) > plot(a,b) > > and that also gives me open circles as it should! - the plot line in my real script is: > > plot( means5[ ,4 ], means6[ ,4 ], xlab="640loci-50reps Gen4(-1) Rst", ylab="ADf" ) > > I have tried adding the "pch=x" command with no effect . . what is going on? (Both computers have the same fonts installed although the home computer is Fedora 16 and the work one is Fedora 15). It is very frustrating . . > > Thanks, > > Phil. > -- > Philip Rhoades > > GPO Box 3411 > Sydney NSW 2001 > Australia > E-mail: phil at pricom.com.au > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- Peter Dalgaard, Professor, Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, Denmark Phone: (+45)38153501 Email: pd.mes at cbs.dk Priv: PDalgd at gmail.com
David Winsemius
2012-Apr-03 12:29 UTC
[R] A trivial plot gives open circles as the plot char but another one gives me "q"s . . why is this?
On Apr 3, 2012, at 1:19 AM, Philip Rhoades wrote:> People, > > On my home computer with a real plot I get what I expect - open > circles as the plot character - on my work computer I get "q"s ! So > I tried a trivial test plot on the work computer ie: > > a <- c(1,2,3,4,5) > b <- c(1,2,3,4,5) > plot(a,b) > > and that also gives me open circles as it should! - the plot line in > my real script is: > > plot( means5[ ,4 ], means6[ ,4 ], xlab="640loci-50reps Gen4(-1) > Rst", ylab="ADf" ) > > I have tried adding the "pch=x" command with no effect . .Did you actually type pch=x ? Not pch="x" ? -- David Winsemius, MD West Hartford, CT
Philip Rhoades
2012-Apr-03 13:36 UTC
[R] A trivial plot gives open circles as the plot char but another one gives me "q"s . . why is this?
David, On 2012-04-03 22:29, David Winsemius wrote:> On Apr 3, 2012, at 1:19 AM, Philip Rhoades wrote: > >> People, >> >> On my home computer with a real plot I get what I expect - open >> circles as the plot character - on my work computer I get "q"s ! So >> I tried a trivial test plot on the work computer ie: >> >> a <- c(1,2,3,4,5) >> b <- c(1,2,3,4,5) >> plot(a,b) >> >> and that also gives me open circles as it should! - the plot line in >> my real script is: >> >> plot( means5[ ,4 ], means6[ ,4 ], xlab="640loci-50reps Gen4(-1) >> Rst", ylab="ADf" ) >> >> I have tried adding the "pch=x" command with no effect . . > > Did you actually type pch=x ? > > Not pch="x" ?Sorry, I meant x as in 1,2,3, . . . 18 Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au