Displaying 20 results from an estimated 1000 matches similar to: "bubble plots"
2004 Sep 22
1
layout for xyplot
Dear all,
I tried to use layout argument in xyplot to get one panel per page.
I have a dataframe named 'data' with the following variables:
x, y = coords,
sub, bloc = 2-level factors,
etat = 5-level factor,
I did :
> lset(theme = col.whitebg())
> xyplot(y ~ x | bloc*sub , data=data, groups=etat,
+ layout=c(0,1,4),
+ main="Etat des plantes dans chaque
2005 Nov 03
0
problems with pan(): Indizierung ausserhalb der Grenzen = subscript out of bounds
Dear alltogether,
I tried pan() to impute NAs for longitudinal data.
The terminology in the following output follows the pan manpage. No data
are attached to this script as this may be too huge.
y = 15 responses
pred = at first just intercept was tried (later on covariates should follow)
subj = 168 different subjects with 4 to 6 observations for each subject
at time points t1, t2, ..., t6
#
2005 May 26
1
PAN: Need Help for Multiple Imputation Package
Hello all. I am trying to run PAN, multilevel
multiple imputation program, in R to impute missing
data in a longitudinal dataset. I could successfully
run the multiple imputation when I only imputed one
variable. However, when I tried to impute a
time-varying covariate as well as a response variable,
I received an error message, “Error: subscript out of
bounds.” Can anyone tell if my commands
2005 Aug 31
0
Imputation using Pan in R
Hi,
I've tried to run the multiple imputation for longitudinal data using Pan in
R.
The trimmed data consist 10 individuals across 4 time points.
Following the example in panex.R, I imputated the model with one y variable
and only random intercept.
It worked well.
The next step for me is to imputate a model with one y variable and both
random intercept and slope.
The program ran well, but
2011 Jun 21
0
R crash when using pan for multiple imputation
Dear R-List,
I apologize for not posting a reproducible example - the reason is that I
actually do not succeed in reproducing my specific problem with
generated data.
Let me still describe the problem:
I want to impute missing data using the "pan" package.
a) It works, when I use a fraction of my data (e.g. 200 out of 44000 cases)
b) It works, when I generate a dataset of equal
2006 Oct 24
0
incorrect number of subscriptions error in user-written function
I have written a function which returns an "incorrect number of
subscriptions error" and am unable to identify why this should happen.
Any help would be gratefully received.
The problem:
I would like to generate combinations/permutations across different
selections - for example all the combinations of "3 chosen from 6"
combined with "5 chosen from 8" combined with
2015 Jul 10
0
colour palettes in biplot
biplot could benefit from allowing colour palettes,
eg. allowing col=list(xcol= xxpal, ycol= yypal) where xxpal and yypal
are palettes.
For an example, see the robust pricipal components in the principal
componetent section of
<http://www.statlab.uni-heidelberg.de/data/olive/olive10.pdf>
The required change is to replace
col[1L] resp. col[2L] by col[1L]] reep. col[[2L]] for example in
2007 Sep 24
0
longitudinal imputation with PAN
Hello all,
I am working on a longitudinal study of children in the UK and trying the PAN package for imputation of missing data, since it fulfils the critical criteria of taking into account individual subject trend over time as well as population trend over time. In order to validate the procedure I have started by deleting some known values ?we have 6 annual measures of height on 300 children
2011 Apr 14
4
Categorical bubble plot
Hi,
I do not have much R experience just the basics, so please excuse
any obvious questions.
I would like to create bubble plot that have Categorical data on the x and y
axis and then the diameter if the bubble the value related to x and y.
Attached to the email is a pic of what I would like to do.
I do hope someone can help me.
--
Regards/Groete/Mit freundlichen Gr??en/recuerdos/meilleures
2009 Jul 31
2
another automation question
This code works:
x<-letters[1:6]
ycols<-23:28
xcols<-rep(c(3,4,5,8),each=length(ycols))
somertime<-function(i,j)somers2(Pred_pres_a_indpdt[,i,,], population[,j])
results<-mapply(somertime,xcols,ycols)
How can I make variable "h" work?
x<-letters[1:6]
ycols<-23:28
xcols<-rep(c(3,4,5,8),each=length(ycols))
2006 Jun 04
1
text bubble (rectangle)?
Dear R wizards: sorry to bug everyone twice in one day.
I would like to annotate my graph by putting text strings into
rectangle boxes with a little cartoon-like bubble with a lid pointing
to a specific location. I can draw some sort of bubble-with-lid using
the R primitives. (has anyone done something like this already?)
the problem where I am stuck is that the width of the rectangle must
2017 Mar 21
0
frozen bubble for C7
That perl lib was most likely in EPEL at the time I added Frozen Bubble. They orphan packages once in a while breaking my deps.
Anyway, I've added perl-Compress-Bzip2 to my repo and Frozen Bubble should install fine now.
--
Sent from the Delta quadrant using Borg technology!
Nux!
www.nux.ro
----- Original Message -----
> From: "Fred Smith" <fredex at
2010 Jul 30
1
Problem with "par" and "bubble plot"
Hi all.
I have been trying to plot 9 bubble plots on each page of a PDF file. For
this, I'm using :
par(mfcol = c(3,3), mar = c(3,3,3,3), oma = c(0,0,0,0));
However, when plotting the bubble plot (gstats package), it plots the graph
on a full page. I tried to plot something else with plot(x,y) and it works
as intended. So I'm guessing the problem comes from the bubble plot itself.
2009 Sep 28
1
Bubble Plot
Hello,
I am using the bubble plot and have been able to overlay two different data sets on the same graphic successfully. I would like to do the following and cannot:
1) suppress the zero values such that there is no representation of them on my plot (i.e., the "zeroes" show up as the smallest dot size, and I can't change this)
2) Give values to y or x axes with values, and
2006 Sep 19
2
bubble plot problems
Hi,
I'm having some problems with a bubble plot (ps package). I don't want
tick marks on all four sides (just two), I want to have a smaller font
size, and I would like to be able to define bubble sizes shown in the
legend (now it shows 0, 0, 0, 9.747 and 4265.757 which is not really
convenient. Passing some of the standard plot arguments didn't help (in
fact, nothing changed).
2005 Jul 21
2
bubble.plot() - standardize size of unit circle
Hello,
I wrote a wrapper for symbols() that produces a
bivariate bubble plot, for use when plot(x,y) hides
multiple occurrences of the same x,y combination (e.g.
if x,y are integers).
Circle area ~ counts per bin, and circle size is
controlled by 'scale'.
Question: how can I automatically make the smallest
circle the same size as a standard plot character,
rather than having to
2009 May 07
1
Bubble Plot Over a Map
Hi everybody,
Well here is another doubt! I’m elaborating some maps, and I pretend to plot
over it the abundance of species. I could do that using points(), but I’d
like to use bubble() from sp package.
When trying to use bubble() I face the fallowing issue: When I call the
bubble function it overwrite everything I previously plotted. It doesn’t
happen with points (obviously), only with
2009 Jan 10
1
Bubble plot on shapefile - projection issues?
Dear R help list,
?
I am working on some data from a study on the habitat use and movement patterns of fish using a marine protected area in Hawaii.? We have a number of acoustic receivers in a MPA, and any time a tagged fish passes within range it records the date and time of detection.? I am trying to make bubble plots?showing the number of detections for each fish at each receiver.? I have been
2011 Nov 23
2
Suggested alternative to rgdal for Mac for making bubble plots with R 2.14?
I'm new to making bubble plots with R, so I was going to try the following:
https://stat.ethz.ch/pipermail/r-sig-geo/2009-August/006258.html
Unfortunately, it looks like rgdal is not part of 2.14. I'm not sure if it was the mirror I selected or something else is going on.
> install.packages("rgdal")
--- Please select a CRAN mirror for use in this session ---
Warning
2017 Mar 18
3
frozen bubble for C7
Hi all!
I'm looking for a frozen-bubble that works on C7.
I've tried installing the one in the Nux C7 archive, and the
installation dies with:
Error: Package: frozen-bubble-2.2.1-0.10.beta1.el7.nux.x86_64 (nux-dextop)
Requires: perl(Compress::Bzip2)
Can't find perl(compress::bzip2) anywhere.
thansk in advance!
Fred
--
---- Fred Smith -- fredex at