Displaying 20 results from an estimated 800 matches similar to: "R-beta: save.plot and piecharts"
2000 Jul 17
0
Réf. : image legend
I would also be very much interested in having the image.legend function in R.
The Splus image.legend uses the subplot function, which doesn't seem to be
available in R, so one can't copy the Splus function to R (otherwise it would
probably have been done already).
I greatly appreciate the flexibility of the Splus image.legend function since it
allow you to put the legend where
2000 Jul 13
2
Programming puzzle...
Dear R guru's,
I'd like to sort the columns of a matrix according to the elements in the
first row, and in case of a tie according to the second row, etc.
In case of a 3xn matrix woppa, something like
colorder _ order(woppa[1,], woppa[2,], woppa[3,])
I just cannot seem to find a way to do this for a variable number of rows,
e.g. if woppa has 10 or 15 rows I now manually cut and paste to
1997 Oct 14
1
R-beta: Private libraries
This must be a simple question but I could not find anything under the
FAQ... so here goes.
I am currently working on a (quite specific) set of functions I would like
to place in a library. But: I'd like to keep this separate from the R source
and CRAN libraries. Is there a global variable so that R searches also other
directories for sources when installing libraries? BTW, this can also be
1998 Jan 27
0
R-beta: help in rsept
Is it possible to get information on libraries or data sets in R
for windows? E.g. under Unix I would type ?library(whatever)...
I have made some simple functions for teaching and spent hours writing
the documentation for my students who now may not even be able to
read it... aarghh
Apologies if this is a FAQ, couldn't find anything on it in the
archives.
Ron
1999 May 07
0
R-0.64.0 on SUN
When I try to install R-0.64.0 on my SUN (
> uname -a
SunOS ac6 5.7 Generic sun4u sparc SUNW,Ultra-5_10
)
I get after "./configure --disable-readline" and "gmake" the following
errors:
gcc -O2 -I../include -I../../src/include -c saveload.c -o saveload.o
In file included from /usr/include/sys/tiuser.h:18,
from /usr/include/tiuser.h:17,
2011 Feb 25
1
color code in loop for piecharts plotting
Hi,
I am using this loop
par(mfrow=c(3,3))
annos<-c(2001:2007,2009)
for (i in annos) {
t<-subset(masia,YEAR==i)
t$FAMILIA<-drop.levels(t$FAMILIA)
pie(table(t$FAMILIA),main=i)
}
To make piecharts of species composition among years (my data frame is
called "masia"). So I get 1 piechart of the families that we have found in
our survey each year. We don't have always
2002 Feb 07
2
FW: layout and piechart diameter problem (PR#1300)
Third try...
> -----Original Message-----
> From: Warnes, Gregory R
> Sent: Tuesday, February 05, 2002 4:12 PM
> To: 'R-bugs'
> Subject: layout and piechart diameter problem
>
>
> I've been using layout to create some graphics pages which include pie
> charts. (NB: No piechart arguments please, the main chart on the page is
> a proper bar chart
2010 Nov 23
1
specifying colours in a ggplot2 piechart
Someone was asking how to do a 16 category piechart in OpenOffice Calc and it appears that it can not be done (which we, probably, should be happy about) but I thought that I'd try it in ggplot2.
It works but I then thought I'd like to make the colours more distinctive but fro some reason I don't seem to be able to use manually assigned colours.
Can anyone suggest where I'm
2001 Nov 10
0
Summary: Teaching with R a quick survey.
Hi
I would like to start by thanking everyone that replied. Thank you for the
information, and for the comments about how or why you use it and thankx for
the encouragement re my talk....
Please note that I do not claim to have ellicited a reply from all users of
R, this is a quick survey not a census.
I have tried to break the responces down to the following categories:
Where: (hopefully
2002 Jan 07
0
piechart default colour (PR#1248)
As of 1.4.0, the default colour of pieslices is black. Try
piechart(1:3) for instance. The workaround is to use an explicit
col="white" argument.
(Of course, everything in example(piechart) uses fancy colour schemes,
so nobody noticed that the default got changed.)
--
O__ ---- Peter Dalgaard Blegdamsvej 3
c/ /'_ --- Dept. of Biostatistics 2200 Cph. N
2005 Sep 29
3
Display values in piechart/barplot
Is it possible to automatically display the underlying values of a
piechart/barplot in the graphic? If so, which package/function/argument do I
need for it?
Thanks,
Volker
2010 Dec 08
2
piechart
dear R-community,
Is it possible to have one pie chart of a large radius and then a pie
chart with smaller radius placed on top of the larger so the centers of
the two pie charts coincide?
I managed to place a filled circle with smaller radius in the piechart,
see below.
Thanks in advance, Sybille
pie(rep(1,12), col=rainbow(24), radius=0.9, labels=
2004 Jun 14
1
Piecharts in a graph
Dear R-Community.
I am trying show pie charts on a graph. To be precise, I have series of
catch calues by species by geographic (5 deg by 5 deg) regions. I want
to draw circles (actually pie charts showing the proportion of the catch
in each area) so that I have a graph of catch by species by geographic
area!
I know there is the < symbols(dat$lon,dat$lat,circles = dat$sp1,
add=TRUE) > but
2002 Feb 07
2
Problems sending email to r-bugs
Hi all,
I've twice tried to send a bug report to r-bugs@biostat.ku.dk , however,
the bug report has not shown up in the database, nor does it appear to have
been copied to R-devel. One message was sent Tue Feb-05-2002 at 4:12pm EST,
I resent at Wed Feb-06-2002 at 12:52 EST. I haven't recieved any error
messages or warnings from the mail server, so I'm not sure what is wrong. Is
2010 Mar 24
2
Multi-panel Pie Charts.
Hi All,
I'm trying to find out a way to plot multi-panel pie charts. It may not be
the best way to present data, but I would still need one.
1. Is anyone aware of some in-built script/function which can do this for
me. I'm aware of one given in Deepayan's book, but anything apart from this?
2. I tried using Deepayan's script on following data set but it doesn't seem
to work
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
2011 Apr 10
2
Webalizer and GeoIP?
I have a small problem with webalizer. I use it to analyze logs of a small web
server hosting a single site, and the only thing I am interested in from
webalizer is the piechart diagram it produces about the geographic
distribution of people visiting the site.
However, the piechart it produces gives me a very crude information, with 50%
or so of visitors belonging to "unresolved",
2000 Apr 30
0
Help Need with aov()
Hi there,
I'm using R1.0.1 Windows 98.
This file contains some inputs and an aov function code. Can someone
check it for me? Somehow I got completely different answer when typing
them in R and in Splus.
Splus gives me this:
> summary( Turnip.aov )
Error: Blocks
Df Sum of Sq Mean Sq F Value Pr(F)
Residuals 3 163.7367 54.57891
Error: Plots %in% Blocks
2001 Feb 04
1
Linux shared library problem (PR#838)
Full_Name: Daniel Egloff
Version: 1.2.1
OS: Linux Redhat 7.0
Submission from: (NULL) (212.35.34.200)
Externals in the shared library libc.so.6 not found. See the
following R session, with the abort message at the end.
> demo(graphics)
demo(graphics)
---- ~~~~~~~~
Type <Return> to start :
> opar <- par(ask = interactive() && (.Device %in%
2010 Jan 29
1
How to draw a border for multiple graphs in one pager
Hi,
I
am struggling to create a 2 by 2 multiple graphs in one page. I used
par(mfrow=c(2,2)) to divide the screen into 4. In each screen I draw a pie chart (They are all same).
For example, my data is like this
Concentration value
A1 69
A2 8
G1 51
G2 1