Displaying 13 results from an estimated 13 matches for "nlabels".
Did you mean:
labels
2008 Aug 02
3
Bubble plots
Is there a way to create a 'bubble plot' in R?
For example, if we define the following data frame containing the level of y observed for 5 patients at three time points:
time<-c(rep('time 1',5),rep('time 2',5),rep('time 3',5))
2008 Jan 04
1
Plotting labeled impulses: label collision
Dear all,
As you can see from the attachment I'm using R to automatically annotate
peptide fragmentation mass spectra, which are represented by impulse plots.
I'd like to poll you on approaches of how to deal as generally as possible
with the two biggest annotation issues I run into:
1) very close annotated masses (impulses) with similar y-axis dimensions -
resulting in overlapping labels
2010 Dec 10
2
Reorder factor and address embedded escapes
I am trying to reorder a factor variable that has embedded escape
characters. The data begins as a csv file with a factor that includes
embedded new line characters. By the time read.table has rendered it
into a data frame, the variable now has an extra backslash.
e.g.
"This\nLabel" in the csv becomes "This\\nLabel" in the data frame.
So, I am trying to reorder the
2005 Apr 15
2
abbreviate or wrap dimname labels
For a variety of displays (mosaicplots, barplots, ...)
one often wants to either abbreviate or wrap long labels,
particularly when these are made up of several words.
In general, it would be nice to have a function,
abbreviate.or.wrap <-
function(x, maxlength=10, maxlines=2, split=" ") {
}
that would take a character vector or a list of vectors, x,
and try to abbreviate or wrap
2005 May 31
2
Barplot2 Title
Hello,
I would like to know if it's possible to modify the name of groups of bar because on my barplot2, I have 5 groups of bars and one of them is called "User Contributes" and when I save the plot "User contributes" is to big so I don't have it on my plot! Is it pssible to put the name vertically!
Thanks!
Sabine
---------------------------------
ils, photos
2008 Aug 05
0
P values in non linear regression and singular gradients using nls
...;volume")
{
X[X<0] <- 0
X <- sqrt(X)
}
X <- min + (X/max(X, na.rm=TRUE) * (max - min) )
cin.x <- par("cin")[1]
cin.y <- par("cin")[2]
if(cin.x < cin.y) X <- X * cin.x/cin.y
X
}
nlabels.y <- length(ylabs)
nlabels.x <- length(xlabs)
####
## Combine duplicate entries
####
# Do twice, once for data, once for colors
tab1 <- split( data.frame(z,dotcolor,x,y), f=list(x,y) )
ztab <- do.call(rbind,
lapply(
tab1,...
2005 Mar 21
3
Force labelling of x-axis
Hi,
I'm trying to do a box-whisker plot of two columns of a data frame, a
list of category names in one column vs. some numerical values in the
other. The plot itself works fine, but only a few points of the x-axis
( the category names ) are labelled. I think that this is because the
category names are too long.
Is there any way to force R to label each x-axis value, preferably at a
2005 Jun 22
2
A polar.plot BUG in plotrix 1.3.3 ?
...(label.pos)
label.range<-c(0,pi*340/180)
}
if(missing(label.pos)) label.pos<-polar.pos
polar.range<-range(polar.pos)
newrange<-c(pi*polar.range[1]/180,pi*(2-(360-polar.range[2])/180))
# rescale to radians
radial.pos<-rescale(c(polar.pos,polar.range),newrange)[1:npos]
nlabels<-length(labels)
label.pos<-rescale(c(label.pos,0,360),c(0,2*pi))[1:nlabels]
radial.plot(lengths,radial.pos,newrange,labels,label.pos,rp.type=rp.type,...)
}
2012 Nov 01
41
[Request for review] [RFC] Add label support for snapshots and subvols
From: Anand Jain <anand.jain@oracle.com>
(This patch is for the review/test not yet for the integration).
Here is an implementation of the feature to add label to the
subvolume and snapshots. Which would help sysadmin to better manager
the subvol and snapshots.
This can be done in two ways, one - using attr which is user land
only changes but drawback is able to change the label
2012 Jul 13
1
LiblineaR: read/write model files?
How do I read/write liblinear models to files?
E.g., if I train a model using the command line interface, I might want
to load it into R to look the histogram of the weights.
Or I might want to train a model in R and then apply it using a command
line interface.
--
Sam Steingold (http://sds.podval.org/) on Ubuntu 12.04 (precise) X 11.0.11103000
http://www.childpsy.net/
2008 Jun 02
4
[Bug 16206] New: Charts in Yahoo Finance crash swfdec
http://bugs.freedesktop.org/show_bug.cgi?id=16206
Summary: Charts in Yahoo Finance crash swfdec
Product: swfdec
Version: git
Platform: Other
URL: http://finance.yahoo.com/echarts?s=%5EDJI#symbol=%5EDJI;
range=1d
OS/Version: All
Status: NEW
Severity: critical
Priority: medium
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
Autobuild has to be updated to call make in the recipe directory
and move the resulting iso to the main build directory.
Importing the existing autotest.sh script from ovirt-node-image
Signed-off-by: Mike Burns <mburns at redhat.com>
---
autobuild.sh | 7 +
autotest.sh | 764 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 771 insertions(+), 0 deletions(-)
2010 Dec 11
0
is there a packge or code to generate markov chains in R
Hi,
if i have data in the following time series format:
time, amount, state
1 2222 A
1 333 B
2 45 A
2 77 B
where states could be n and time periods t is there a package in R that would calculate the transition probabilities in a markov chain.
for each t except t=0 to generate
A B
A
B
perhaps the best structure might