search for: stripchart

Displaying 20 results from an estimated 102 matches for "stripchart".

2008 May 22
2
Stripchart and Boxplots side-by-side
Dear all - With the following code I get Boxplots and Stripcharts in one Plot: with(InsectSprays, boxplot(count ~ spray, boxwex = 0.3)) with(InsectSprays, stripchart(count ~ spray, col = "red", vertical = TRUE, add = TRUE)) But the dots from the stripchart are plotted over the Boxes. Is there any possibility to have Stripchart and Boxplots side-by-si...
2007 Nov 21
1
Manipulating x axis in stripchart
Hi all, I I need to manipulate the x axis in a stripchart. I will use one of the data sets included in R to explain what I need to do. attach(ToothGrowth) stripchart(len[supp=='VC']~dose[supp=='VC'], vertical=TRUE, group.names=c('A','A','A')) stripchart(len[supp=='OJ']~dose[supp=='OJ'], add=TRUE,...
2009 Sep 23
1
stripchart with pch %in% 21:25 with bg
Dear all, consider: ### x <- round(rnorm(50)) stripchart(x, pch = 21, col = "black", bg = "pink", method = "jitter") points(0.5, 1, pch = 21, col = "black", bg = "pink", cex = 2) ### Under R 2.9.0 the points produced by stripchart are not colored, while points() gives the desidered output (magnified her...
2012 Jun 13
2
Median line with stripchart
Dear all, I would like to ask if it possible to draw a median line in a Stripchart, either using the built-in STRIPCHART function or with another package. I was expecting stripchart() to work more or less like boxplot(), but I couldn't find an easy way to draw a mean or median line, neither I found this option in other packages. Could somebody help? Best regards, Lui...
2006 Nov 08
1
Trying to create multiple stripcharts
Hi everybody, I'm a new member of the list. I'm just starting to use R. I'm looking for information about stripcharts. I didn't find a lot on the web. Outside http://www.maths.lth.se/help/R/.R/library/graphics/html/stripchart.html there isn't much I found. I'm trying to create three vertical stripcharts "glued" to one another. I succeeded to create one stripchart with three strips, but I...
2008 Aug 07
1
stripchart ignores main title option (PR#12202)
Full_Name: James Curran Version: 2.7.1 OS: Windows XP/Vista Submission from: (NULL) (130.216.51.81) stripchart ignores the main title option. For example, in the documentation stripchart(decrease ~ treatment, main = "stripchart(OrchardSprays)", vertical = TRUE, log = "y", data = OrchardSprays) does not yield a plot with "stripchart(OrchardSprays)" at...
2012 Jun 21
1
reversing the order of a y-axis in stripchart()
Hi, I am trying to plot a graph using stripchart() - my x-axis is categorical and my y-axis is numerical. I would like to reverse the order of my y-axis (i.e. with 0 at the top left and increasing numbers moving downward towards the bottom left corner). My data are subsetted into 3 categories that I've plotted on 1 graph using stripchart(add=...
2004 Feb 29
1
stripchart and axes
Hi, I'd like to remove the axes from a plot produced by stripchart(). However, when trying stripchart(..., axes = FALSE), I get the error meassage Error in stripchart(hypokvot1 ~ treatment, "jitter", pch = 1, vert = TRUE, : unused argument(s) (axes ...) using R 1.8.1 on Windows. Can it be done some other way? If not, maybe this functionality can be...
2010 Jun 13
1
ERROR need finite 'ylim' values
Hello: I use R with MAC I have a simple data table, numeric and text columns, named dt. The table is imported through read.csv from a csv file. Row numbers are automatically assigned, header is set to TRUE. there are 599 rows and several columns. I am trying to plot using the stripchart command: one numeric variable (say dt$fnatg) vs a text column (say dt$pat). dt$pat contains one of 3 values: "pos", "neg", "" So I issue the following command: >stripchart (dt$fnatg~dt$pat) and works well. it works well also with several options and nuances: &gt...
2003 Mar 30
1
Suggestion: add log argument to stripchart
Hello, I frequently use stripchart to summarise data. Recently I wished to plot a stripchart on a log scale, so modified stripchart locally. The change is small, just adding log="" to the function call and then changing line 42 of src/library/base/R/stripchart.R from: plot(xlim, ylim, type="n", ann=FALSE,...
2008 Oct 10
1
boxplot and stripchart
I want to make illustrations a la boxplot for a data material with several groups. Some of the groups are very small, so a boxplot doesn't make sense. I would like to use stripchart for these groups. On the other hand, some of the groups are very large, so for them stripchart isn't so good. So my question is: Is it possible to combine boxplots and and stripcharts in one figure? (Of course, in R anything is possible, but I mean in a simple way.) Or is there some other good...
2009 Dec 01
1
Stripchart: way to get different colour for each group
Hi, Is there a way to get different colour based on group when plotting stripchart? mydata <- data.frame(val1 = c(1.1, 3.2, 4.1, 2.5, 6.2, 5.3, 4.5, 2.2, 4.7, 2.7), val2 = c(4.2, 5.3, 3.4, 2.6, 5.3, 6.2, 7.7, 4.8, 3.4, 2.1), group = rep(0:1, 5)) mydata.stack <- stack(mydata, select=-group) stripchart(values ~ ind, data=mydata.stack, vertical=T,...
2009 Mar 13
1
Overlay plot: boxplot and stripchart
...P1 5.2 xx 4 P1 6.2 xx 5 P2 3.5 xx 6 P2 6.5 xx 7 P2 7.5 xx 8 P2 4.5 xx 9 P2 4.5 xx 10 P3 4.8 x1 11 P4 7.3 x2 12 P4 3.2 x2 13 P4 3.3 x2 I want to overlay the following boxplot and stripchart. I think that I had seen before in a discussion a thread about stripchart in R (maybe from Dalgaard), but although searching for it I couldn't find it. boxplot(x$earned ~ x$movie) stripchart(x$earned ~ x$movie, vertical=T,data=x, method="jitter", pch=19) Any suggestions are greatl...
2008 Jan 22
1
stripchart
hi, I want to plot a dotplot graph but unfortunately R does not have it any more. It suggest to use either the stripchart or the dotchart and i prefer to play around with the stripchart graph. Sadly, the result is not like i want where I'm actually wants the plots/points were scattered around the x-axis. Plus, from the results shows that and the x-axis gave a very large scale, i.e 5.0e+0.7. How am i going to chang...
2004 Nov 09
2
Multiple stripcharts using "for loop"
Hi I'm able to create multiple plots from a dataset using a "for loop" to change variables, but when I try with stripchart it doesn't work. Standard boxplot: for(i in 2:14){boxplot(klk[,i]~Group,main=colnames(klk)[i]) Stripchart: for(i in 2:14){stripchart(klk[,i]~Group,main=colnames(klk)[i]) gives:Error in plot.window(xlim, ylim, log, asp, ...) : need finite xlim values In addition: Warning messages: 1...
2008 Jun 21
1
Coloring Stripchart Points, or Better, Lattice Equivalent
Hi All. I have the commands below to create a stripchart/plot. I was hoping to color the points in the plot by yr, and use a symbol that varied with resp. However, the outcome makes it appear as though the point by point col and pch data is not being passed properly. Any suggestions? And truthfully, I?d rather be doing this with Lattice, but I?ve trie...
2006 Feb 22
1
stripchart-y axis labels
Hello, I am trying to create a stripchart for my data, where y axis labels are characters (ie,names of cities). I would like to change the orientation of the y - axis labels, ie perpendicular to y axis. Below is the code i am using: par(srt=90) with(ozone.ne.trim, stripchart(Median~City,main = "stripchart(ozone)")) The par op...
2009 May 22
1
stripchart and ordering of plot
Take for example the following stripchart that's created: b <- 1:5 a <- 11:15 e <- 21:25 f <- -11:-15 foo <- rbind(b,a,e,f) stripchart(foo ~ rownames(foo)) In this case, I would like the bottom part of the plot to be the f vector, followed by the e vector, etc. However, R reorders the matrix and plots according to t...
2003 Dec 08
3
stripchart problem
...f 5 fam2 4.1 f 6 fam2 1.2 f 7 fam2 0.6 m 8 fam3 3.5 m 9 fam3 2.5 m 10 fam3 2.9 m 11 fam3 5.6 m 12 fam3 4.4 f 13 fam10 1.1 f 14 fam10 1.2 f 15 fam10 2.9 f 16 fam10 2.2 f 17 fam10 4.7 m I can nicely plot the age distribution by families with > stripchart(famdata$age~famdata$family) I would like to plot datapoints according to the sex of the person, e.g. circle for a girl and square for a boy, like this: > stripchart(famdata$age~famdata$family, pch=ifelse(famdata$sex=="m", 22, 1)) But this command doesn't work as I expected. Data...
2005 Sep 16
1
horizontal lines on stripchart
Hi. I would like to add a horizontal line to each column of data on a stripchart (vertical=T) to indicate the mean(rather like the package Prism does - for those that have used this) for each dataset. I presume the best way to do this would be with "lines" but after much trying / playing about I can't figure it out. Can anyone help? Thanks