Displaying 20 results from an estimated 10000 matches similar to: "Can I save R graphs as a R objects"
2010 Jan 19
4
how to open excel 2007 (.xlsx) file in R
i am unable to open a file which is saved as .xlsx format in R . The file
contains approximately 1,50,000
rows. So I m not able to save it as csv file.Please suggest ways to open
this file
--
View this message in context: http://n4.nabble.com/how-to-open-excel-2007-xlsx-file-in-R-tp1017273p1017273.html
Sent from the R help mailing list archive at Nabble.com.
2012 Aug 22
3
Barplot with Secondary axis
Hi all,
I am trying to plot a bar chart and trying to plot a line as a secondary
axis as my scale is different for two y axis.
I am plotting a clustered bar chart by using besides = True option in
barplot function and my y coordinates are not plotted exactly at the center
on each two bars. Please help me.
I am pasting the code as follows.
x =
2010 Jan 19
5
How to detect and exclude outliers in R?
Suppose I am reading data from a file and the data contains some outliers. I
want to know if it is possible in R to automatically detect outliers in a
dataset and remove them
--
View this message in context: http://n4.nabble.com/How-to-detect-and-exclude-outliers-in-R-tp1017285p1017285.html
Sent from the R help mailing list archive at Nabble.com.
2008 Aug 04
5
Are there any guis out there, which will allow editing of the graph?
Hi, all,
I would like to know if there is any gui interface out there
(academic or commercial) that allows one to edit R-language generated
graphs (e.g positioning x axis labels.) It would be nice to have
something like the user interface of Igor or Origin. I have already
used JGR and R-gui. These are good, but they don't allow one to
easily edit graphs. I have also tried
2010 Feb 03
4
Interactively editing point labels in a graph
Dear experts,
I would like to be able to interactively (if possible, with mouse and clik) edit point labels in graphs, particularly in multivariate graphs, such as the biplots you get after a correspondence analysis (with, for example, package ca), where labels tend to overlap. The graph aspect ratio is relevant (it needs to be mantained). And I'm working with Windows XP.
In this kind of
2009 Apr 09
6
Cross-platforms solution to export R graphs
Hello Rusers,
I have worked on a R Wiki page for solutions in exporting R graphs,
especially, the often-asked questions:
- How can I export R graphs in vectorized format (EMF) for inclusion in
MS Word or OpenOffice outside of Windows?
- What is the best solution(s) for post-editing/annotating R graphs.
The page is at:
http://wiki.r-project.org/rwiki/doku.php?id=tips:graphics-misc:export.
I
2009 Sep 03
3
Zoomable graphs with multiple plots
Hi folks,
I was wondering if anyone could confirm/deny whether there exists any
kind of package to facilitate zoomable graphs with multiple plots (eg,
plot(..) and then points(..)). I've tried zoom from IDPmisc, and
iplot from the iplot and iplot extreme packages, but as far I can
tell, neither can handle the task.
Does anyone know anything else that might work? Or generally know
2005 Feb 28
5
Journal Quality R Graphs?
Hi!
I have browsed the help archives but did not find
anything on the subject: How
to make publication quality graphs with R best?
Is there some document about that topic out there? The
problem is that the
graphs look nice on the screen but when printed in
black and white every color
apart from black doesn't look very nice. Is there some
guideline how to set
color palettes and or fill
2010 Feb 04
6
problems with SPC charts in R
Hi all,
I am using SPC techniques of plotting Xbar, R, S, P and C charts in R.For
this I am using qcc package in R and also using the following document for
reference.
http://www.stat.unipg.it/~luca/Rnews_2004-1-pag11-17.pdf
But while plotting S chart, R chartchart and also C chart I am getting
following errors.
I have plotted the Xbar chart successfully using following command
obj <-
2010 Feb 25
4
different types graphs
>library(RODBC)
>ch<- odbcConnect("durga")
> sqlQuery(ch, paste("SELECT * from emp"))
>sqlQuery(ch, ("SELECT * from xyz"))
store revenue year_y
1 bigbazar 787875 2008
2 more 87876 2008
plot(revenue ~ year_y, data=xyz, pch=16)
can i get any diffrent types of graphs like pie charts, bar
2010 Jun 17
3
R user interface
Hi R,
I have a an excel file with a lot of data. I need to create an user
interface in R, which has one single screen. It needs to contain a right
pane containing the click buttons for different countries (say). If the
user clicks a country, then a chart needs to be created for that
country, taking the data from Excel. Is this possible and which package
helps me in doing this? Many thanks in
2010 Jan 28
3
Using tcltk or other graphical widgets to view zoo time series objects
Dear all,
I am looking at the R-help entry below:
http://finzi.psych.upenn.edu/R/Rhelp02/archive/26640.html
I have a more complicatedt problem. I have a zoo time series frame with
100+ sequences.
I want to cycle through them back and forth and compare them to the 1st
column at any time.
I need also a button to click when I need the viewed-selected sequence
(that is being compared to the
2011 Aug 02
3
3D Bar Graphs in ggplot2?
Does anyone know how to create a 3D Bargraph using ggplot2/qplot. I don't
mean 3D as in x,y,z coordinates. Just a 2D bar graph with a 3D shaped bard.
See attached excel file for an example.
Before anyone asks I know that 3D looking bars don't add anything except
"prettiness".
http://r.789695.n4.nabble.com/file/n3713305/Example.xlsx Example.xlsx
--
View this message in
2010 Jan 25
1
Postscript graphs
Hi,
I tried to use the following commands to create a postscript pie chart using R:
postscript(file="H:/piechart.eps")
# then I wrote my commands to generate the pie chart
pie(filename,labels=,col=,radius=0.6)
dev.off()
After I ran those commands, instead of giving the pie chart, it showed
> dev.off()
postscript
2
>
In my H drive, there is a file called
2008 May 11
2
combining bar and column graphs?
Hi, I'm hoping to find out whether R, or an R add-on, can generate a
particular type of graph. And, more basically, whether such a type of
graph even makes sense.
I'm looking for something resembling both a column chart and a bar
chart, where the basic visual "unit" is a solid rectangle of color that
can be extended either horizontally, vertically, or both. The data that
2013 Jan 14
1
Plotting two graphs on the same figure
I want to add a line that represents the relationship between x and y to a strip chart, I've tried the following functions:
par(new=TRUE)
points(x,y)
lines(x,y)
but nothing works, I get the strip chart but line doesn't show up. Here is my function:
stripchart(hydfin$exp ~ hydfin$alt, vert = TRUE, pch = 1, method = "jitter", jit = 0.05, xlab = "Elevation", ylab =
2007 Oct 27
1
creating large graphs
Dear useRs,
I have a large dataset (600 to 2000 observations) that I need to cluster with a hierarchical technique, and then examine so that I can use cutree to extract various groups. I would like to visualize the results of hclust in a dendrogram, but this is obviously too much data for the normal 6 x 6 figure. Does anyone know how to make a large graph so that I can print it and view the
2013 May 16
2
Does Set Block IO tune take effect in the same session.
Hello All,
I am using virDomainSetBlockIoTune() API to set the IO tune parameter for a
running guest VM.
I observed that after setting the value succesfully i ned to Shutdown and
start the VM inorder to take the set value in effect.
Is there any way with which these values come in effect in the same session
of the VM without Shutting down and starting the VM.
Please help
regards,
Vikrant
2011 Oct 20
4
quantmod package
i am new to the quantmod package . so if the answer is trivial please excuse
me. i want to study stock values within a day. i get current stock updates
using getQuotes and then want to produce usual quantmod graphs with that
values. also the graph should be able of adding technical indicators. please
help. in addition it will be helpful if anyone suggests how to run that code
continuously to get
2010 Jul 14
2
Error while connecting to Oracle using RODBC package
Dear All,
I want to connnect R with oracle. I am using RODBC package for this
connection. Following is my code to connect
library(RODBC)
channel <- odbcConnect("Vikrant")
I am getting following error.
1: In odbcDriverConnect("DSN=Vikrant") :
[RODBC] ERROR: state NA000, code 12288, message [Microsoft][ODBC driver
for Oracle][Oracle]ORA-12514: TNS:listener does not