[R] help with plot axis

2007-05-03 Thread Rina Miehs
Hello i have a plot, and want the axis too be with larger writing, i found some functions but they didnt work this is my plot, and if the axis can be with bigger writing can the legend inside the plot be in same the size?? plot(femsplot, xlab='Indeks',ylab='Kødprocent', pch=22)

[R] Help with plot(augPred()) plot(comparePred()) in nlme

2006-11-09 Thread Michael Kubovy
Dear r-helpers, When I issue the commands plot(augPred(mcc.lme, primary = ~ mcc$age, length.out = 2, level = c (0, 1))) or plot(comparePred(mcc1.lis, mcc.lme, primary = ~ mcc$age, length.out = 2), layout = c(4, 3))) no lines are drawn. But fm1 - lme(Orthodont) plot(augPred(fm1, level = 0:1,

[R] help with plot()

2006-10-16 Thread tom soyer
Hi, I am new to R and I have been trying it out. I ran into a problem with the plot() function. Below is my code: d - read.table(c:/test/sp.txt,header=0) spval - d[,2] plot(spval,type=l) Warning messages: 1: graphical parameter type is obsolete in: plot.window(xlim, ylim, log, asp, ...) 2:

Re: [R] help with plot()

2006-10-16 Thread David Barron
It's possible the problem is with your data; could you provide some sample data with which we can reproduce the error? On 16/10/06, tom soyer [EMAIL PROTECTED] wrote: Hi, I am new to R and I have been trying it out. I ran into a problem with the plot() function. Below is my code: d -

Re: [R] help with plot()

2006-10-16 Thread Duncan Murdoch
On 10/16/2006 9:44 AM, tom soyer wrote: Hi, I am new to R and I have been trying it out. I ran into a problem with the plot() function. Below is my code: d - read.table(c:/test/sp.txt,header=0) spval - d[,2] plot(spval,type=l) Warning messages: 1: graphical parameter type is obsolete

Re: [R] help with plot()

2006-10-16 Thread tom soyer
Hi David and Duncan, Thanks for the reply. I am using R-2.4.0 for windows. All I am trying to do is follow an online tutorial ( http://www.onlamp.com/pub/a/onlamp/2005/11/17/r_for_statistics.html) step by step. spval is just an array of numbers. I also tried using type=1 instead of l, but got

Re: [R] help with plot()

2006-10-16 Thread Marc Schwartz
Tom, If your text file, 'sp.txt' contains the headers used on that web page, then your read.table() function call is incorrect. Your call below presently has 'header = 0'. Use TRUE/FALSE for easier reading of code. The tutorial seems to be inconsistent with that. If your text file contains the

Re: [R] help with plot()

2006-10-16 Thread tom soyer
Thanks Marc. I followed your suggestion and I got R to plot the correct graph! You are absolutely correct about R switching automatically from plot() to plot.factor(). I had no idea that it would do that. It looks like having the header is very important in R. Appreciate your help very much. On

Re: [R] Help on plot multiple plot(hexbin) in the same page

2006-10-09 Thread Paul Murrell
Hi Li, Sue wrote: Dear R-users, I try to plot multiple plots of hexbin in the same page. However, par does not work when hexbin is used. Neither do xlim and ylim. Any ideas? hexbin is now based on the grid package, so does not work with par(). You might want to take a look at the hexbin

[R] Help on plot multiple plot(hexbin) in the same page

2006-10-05 Thread Li, Sue
Dear R-users, I try to plot multiple plots of hexbin in the same page. However, par does not work when hexbin is used. Neither do xlim and ylim. Any ideas? Thanks, Sue [[alternative HTML version deleted]] __ R-help@stat.math.ethz.ch

[R] help with plot of prcomp object

2006-09-18 Thread Kimpel, Mark William
I need to plot a prcomp object from package stats with custom symbols suitable for BW publication. My boss specifically wants filled and unfilled square, triangle, circle, inverted triangle, diamond to represent 5 brain regions of 2 types of rat. Can I specify these as a parameter? Thanks,

Re: [R] help with plot of prcomp object

2006-09-18 Thread Richard M. Heiberger
yes, see ?points for the list and details. __ R-help@stat.math.ethz.ch 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,

[R] help with plot hclust tree

2005-02-09 Thread shuangge
Hello, I will really appreciate some help with the following question. let's say cor.m is a correlation coefficient matrix. tree-hclust(as.dist(1-cor.m)); plot(tree); my question is: is it possible to add the correlation coefficient information to the plot? thanks, S. Ma

Re: [R] help with plot hclust tree

2005-02-09 Thread Uwe Ligges
[EMAIL PROTECTED] wrote: Hello, I will really appreciate some help with the following question. let's say cor.m is a correlation coefficient matrix. tree-hclust(as.dist(1-cor.m)); plot(tree); my question is: is it possible to add the correlation coefficient information to the plot? Which