Displaying 20 results from an estimated 3000 matches similar to: "ploting labels on barplot"
2007 Dec 01
3
compare strings
Sorry for the question, but I really cannot find the right search terms to
find an answer..
I have a data frame with strings in some of the columns.
I want to know all the rows where the strings in both columns are equal.
How do I do this?
Thanks,
Bernd
[[alternative HTML version deleted]]
2007 Oct 25
2
data frame usage
Hi,
I am new to R and couldn't find any information on how to handle my table
data that I just read in the way I want to use it..
I read in a table from a file:
x <- read.delim("filenam", header=TRUE)
one column (x$label) hold the class labels. Another holds some values
(x$val).
I want to calculate summary statistics for different classes.
How would I do this?
Thanks,
Bernd
2007 Oct 29
2
Qsub - unable to open connection to X11 display
Hi there,
I want to run an R script on a cluster with qsub. Obviously I don't want to
display any X window, but I want use png() or something else to write out
images.
Unfortunately I get the following error message:
> png(filename = " ALL.png", width = 480, height = 480, pointsize = 12, bg =
"white", res = NA)
Error in X11(paste("png::", filename,
2008 Mar 17
1
summary of summaries
Hi,
I have a few hundreds files with numerical information of different length
but with the same column structure. I use the following code to get summary
statistics
fplist <- list.files(pattern=".*analysis")
for (fp in fplist){
x2 <- read.delim(fp)
summary(x2)
}
Summary gives something like:
summary (x2)
V1 V2
2007 Nov 26
1
looking for packages that visualize nucleotide sequence properties
Hi there,
I am looking for R-packages that can help me visualize properties on
nucleotide sequences. I want to display sequences in the 1-100K base range
as lines and plot features above and below those lines.
Any ideas would be welcome.
Thanks,
Bernd
2005 Oct 11
1
problems with levelplot and contourplot
Hello,
Using the following code i want to make a level or contourplot of some
data that I produced
library(grid);library(lattice);
mydata <- read.table("avgee.dat");
mymat <- as.matrix(mydata);
mymat <-t(mymat)
vals<-as.vector(mymat);
conc<-c(0.0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5);
a<- c(0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1, 2.5,5.0,
7.5,10,
2003 Sep 13
1
Does * machine need a sound board for MOH?
Does anyone know whether the linux machine running * have to have a
sound card on it in order for musiconhold to work for sip phones?
I've tried about everything (including tons of google searching) to get
it to work, and nothing.
When a call is placed on hold between two C7960's, the CLI indicates:
-- Executing Dial("SIP/3002-c418", "SIP/3000|20") in new stack
2001 Dec 07
1
densityplots
Dear all,
I am new in R so please forgive the "dumb" question...
I am used to work with Mathematica where it is possible to display a 2D array as a collection of shaded squares. The gray level there represents the value of the array element. It is basically a projection of a 2-dimensional histogram.
After a lot of reading I still haven't found that kind of function.
I would be
2002 May 24
1
Axis labels
Dear all
I have a problem with assigning my own labels to the axis of a plot.
I want to substitute the given labels e.g. 1,2,3,... with a vector of values
and strings e.g. "12.23", "1.34", "245,5", "Result".
B.t.w. how do I rotate these labels so they don't overlap????
I want to use the image function to plot.
Thanks for your kind help.
Bernd
2007 Nov 02
1
counting with factors
Hi there,
I have something that appears to be a factor called drug:
Typeof(drug) => Integer
As.numeric(drug) gives a long list
Levels(drug) gives a long list, too.
Now I want something like the summary function does:
I want to count how often each level occurs in the given vector.
My problem is that summary gives me a list with counts that is incomplete
and adds the
2008 Jan 04
1
R command line arguments
Hi,
I would like start R in BATCH mode and submit my own parameters. Or in other
words, I would like to specify variables from the command line and execute a
script using those.
I have been looking at commandArgs and calling R from the command line under
bash:
R CMD BATCH --no-save --args -filename="$filname" -- r-test.R r-test.Rout
The problem here is, if $filename contains
2010 Nov 17
1
general question on R setup/environment
Hi,
Someone recently told me that R is not working well with other programs in
a clustered environment. I believe we are using gensoft and working in a
redhat environment. What was also mentioned was that there are problems when
running multiple R instance at the same time.
Personally I haven't experienced any of the described difficulties but would
like to get your feedback and potentially
2010 Jun 18
3
ploting dots with quentiles
http://r.789695.n4.nabble.com/file/n2260087/%E6%8D%95%E8%8E%B7.png
I am going to plot my data set like this, with means and 25% & 75%
quentiles.
I've tried "boxplot", but the output is not what I want. Should I use other
functions? Thanks
--
View this message in context: http://r.789695.n4.nabble.com/ploting-dots-with-quentiles-tp2260087p2260087.html
Sent from the R help
2011 Mar 03
1
Ploting Histogram with Y axis is percentage of sample for each bin
I'm trying to do something very simple...
I wan to plot a histogram where the y axis represent the percentage of the
total sample that each bin represents.
I know how to plot a histogram with the counts and density... but can't find
anything that gives me perenct of sample on the y axis.
Any help is appriciated
Below is the script I'm working with
par(mfrow=c(1,2))
2007 Oct 15
1
Need help ploting time series(2)
hi:
Yesterday I post a message about hoy to plot a time series, but someone told
me to post more information about the file so here it is:
the file was read using read.table and the name is list. When I use
str(list) it tells the following variables:
YEAR int: 2003,2003,2003....2004
MONTH int:1,1,1,1,....
DAY:int 1,1,1,...
STATE: factor with 51 levels.
SALES: int (sales per day)
The reason why
2008 Dec 18
1
Ploting 3D cylinder in RGL
Dear all,
I would like to draw a 3-D horizontal cylinder preferably in RGL device
(because this gives the look from different angles). Basic idea is from
http://www.tau.ac.il/cc/pages/docs/sas8/insight/chap18/sect3.htm.
Below is the description exactly what I want to do.
Please see at figure 18.6, 1st plot. Here it is an confidence ellipsoid.
Suppose now you put another 4 same ellipsoids on top
2008 Feb 08
1
Checking for linearity by ploting residuals against predicted values (lme)?
En innebygd og tegnsett-uspesifisert tekst ble skilt ut...
Navn: ikke tilgjengelig
Nettadresse: https://stat.ethz.ch/pipermail/r-help/attachments/20080208/5aae5afd/attachment.pl
2009 May 21
1
Need help on ploting Histograms
this is the command i made for a normal distribution, but when i try to plot
the histograms, i dont know why the bars don't stick on the line...
nsamples<-1000
sampsize<-15
Samples<-matrix(rnorm(nsamples*sampsize,0,1),nrow=nsamples)
a<-apply(Samples,1,var)
NC14<-a*14
x<-0:40
plot(x,dchisq(x,14),type='h')
hist(NC14,freq=F,add=T)
--
View this message in context:
2009 Oct 12
0
function: ploting an igraph object within lattice
Hi, I would like to be able to develop a function to plot an igraph object
with lattice (trellis type displays will be usefull for grouping etc).
Anyway, I mostly feeble
Igraph requires that you convert two columns of data two an igraph object
and to be able to plot the graph...I have tried a very, very simplistic (if
not naive) approach and surprise, surprise, it didn't work.
First of all,
2001 May 15
3
box around a barplot
Hi,
is it possible to draw a box around the following barplot;
using "box=TRUE" won't work.
----------
pc<-c(1,2,5,29,27)
barplot(pc,ylim=c(0,30),yaxs="r",xaxs="r",ylab="Anzahl"
,names.arg=c("Mac","286er","386er","486er","Pentium I")
,axisnames=T,col="gray")
----------
Thanks in