search for: prettygraph

Displaying 12 results from an estimated 12 matches for "prettygraph".

2010 Feb 24
2
How to read percentage and currency data?
...102.00% 119.00% B 585.00% 484.00% 599.00% 653.00% 726.00% 882.00% 1035.00% C 18.00% 19.00% 25.00% 15.00% 31.00% 33.00% 33.00% D 23.00% 22.00% 31.00% 30.00% 36.00% 42.00% 49.00% E 35.00% 41.00% 49.00% 40.00% 48.00% 48.00% 53.00% F 19.00% 20.00% 33.00% 16.00% 20.00% 26.00% 28.00% ----- Try http://prettygraph.com Pretty Graph , the easiest way to make R-powered graphs on the web. -- View this message in context: http://n4.nabble.com/How-to-read-percentage-and-currency-data-tp1567318p1567318.html Sent from the R help mailing list archive at Nabble.com.
2011 May 13
6
Powerful PC to run R
Dear all, I'm currently running R on my laptop -- a Lenovo Thinkpad X201 (Intel Core i7 CPU, M620, 2.67 Ghz, 8 GB RAM). The problem is that some of my calculations run for several days sometimes even weeks (mainly simulations over a large parameter space). Depending on the external conditions, my laptop sometimes shuts down due to overheating. I'm now thinking about buying a more
2010 Feb 08
2
How to reverse the axis direction in log plot?
The following command gives me a plot where the axes are in log scale but 'x' increases in the right direction. plot(1:10,1:10, log='xy') I want to change the plot such that it is still in log scale but 'x' decreases rather increases in the right direction. I'm wondering if there is an option to do so.
2010 Feb 22
3
Re : how to plot select points in preexisting persp plot
Hello, I am trying to plot selected data points to a preexisting persp plot that satisfies a condition. I used the following statement - text(coords[,1], coords[,2], names(act[which(act > 8.75)]), cex=0.7) But I get all the points labeled, instead of the points that satisfy the condition specified. Is there any way to plot only the points I want? Also can this be done using
2010 Feb 23
1
How to change a venn command into a named object that can be plotted like a lattice object
Hello, I am plotting data as a venn diagram but would like to be able to control how it is plotted like a lattice object. Right now, it plots right away. I would like to name it and then plot at will. I thought to convert the whole thing to a PostScript file then get it back into R via grImport, but surely (please!) there must be a less roundabout way to do this. Any help is appreciated. Here
2010 Feb 22
2
adding infrequent date labels to x-axis
I'm sure there is a clever way to do the following, but I've been unable to find it on this forum or by writing my own functions. I have 8 years worth of weekly data but would like to restrict the labels on the x-axis to months only. I've included the first year's worth of data below. My line of thought has been along these lines
2010 Feb 22
3
relative file path
Hello, Is there a way to find where a script is located within a script? getwd() doesn't do what I want because it depends on where R was called from. I want something like source("randomFile") and within randomFile there is a function called whereAmI() which returns c:\blah\blah2\randomFile.R In perl there is a library called FindBin and $FindBin::Bin has the directory of the file
2010 Feb 23
2
scatterplots in car package
Hi, using scatterplot in 'car' package. There are 4 plots to be pictured together (ignore data used): library(car) par(mfrow=c(3,1)) ts.plot(rnorm(100)) ts.plot(rnorm(100)) scatterplot(rnorm(100),rnorm(100),boxplot="",smooth=T) # scatter with non-parametric fit problem is that the last one comes 'always' separate. Is there any way to solve it?? of course can use
2010 Feb 23
5
axes limits in do3d
Does anybody know how to change the axes limits in do3d in made4? This is the code I have tried: do3d(sub, x=2, y=1, z=3, pch="+", col="darkgreen", ylim=c(0,4), xlim=c(0,140) ) But it doesn't seem to change the limits of the x and y axes as I would expect. I've also tried lab statements but can't seem to achieve the scales that I want. Any ideas would be much
2010 Jan 28
2
Missing argument error message
Back in the days of R 2.6, if you did this, you got this: > z=function(x){x*2} > z() Error in z() : argument "x" is missing, with no default But now in this decade we get (for R 2.9 and 2.10): > z=function(x){x*2} > z() Error in z() : element 1 is empty; the part of the args list of '*' being evaluated was: (x, 2) Now I can see (after thinking about it)
2010 Feb 23
3
colour highlighting inputs and outputs in the R terminal?
Dear all Is it possible to get basic colour highlighting for inputs and outputs in the R terminal? I am looking for something similar to what GUIs provide, such as JGR and (I think) the Windows R GUI: colouring all inputs in red, and all outputs in blue. All this in a colour-aware console (in my case, on Linux). I've been looking into xterm256 and highlight, but I am sofar unable to do with
2010 Feb 23
5
export tables to Excel files
Dear R users, I've just posted a similar question about Illustrator. This time I would like to export the results of my statistic tables and my dataframes into Excel files. Up to now I've used write.csv(), but I have to resave every file in .xls in Excel. I would like to know if there is a function or package to export directly into *.xls. I have found xlsReadWrite which would be