Search Archives
Search tips
from:Name
Search by author name, e.g. from:Duncan Murdoch
"exact phrase"
Match an exact phrase
word1 word2
Match messages containing both words
Date range
Use the date pickers to filter results to a time period
Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.
Hii, Is it possible to put Boxplots at the top of the Barplots ? I will describe the standard derivation with a Boxplot at the of the Barplots. It could also be "line" instead of Boxplot... Can anybody help me how...
Hii, I created some boxplots with this commands: x <-read.table(file="test.txt") x$group <- rep(1:8, each=5) boxplot(V3~gruppe, data=x) Now, I will connect the boxplots to each other to the min, max and...
Hii, Is it possible in R to write out to the graph the exact values of the X-Axis, even if the values are high ? I will avoid to get the values in this Form for example: 3e+06 Can...
Hii, Is it possible to change the description ot the x-axis ? I need some barplots with high x-axis values. After plotting the graph, the x-axis values are shown in this form: 0e+00 1e+06 2e+06...
Hii, Is it possible, to use the plot() funktion and the boxplot() funktion together ? I will plot a simple graph and additionally to the graph on certain places boxplots. I have imagined to plot the graph a little bit transparency...
In other words: I will connect the median, min and the max area of the boxplot with a line. The function lines() could help me, but I don't know which parameters the lines() function should have. johnhj wrote: > > Hii...
Hii, Can anybody help me, I don't know how to print the "median". Below is my code snipplet... x <-read.table(file="D:/Uni/Diplom/Diplom/Grafiken/R/BATMAN/Kabel/Batman1hop/Standardabweichung__output_30_1_Kabel(30m)_b.txt...
Hiii, I have some problems to plot "standard deviation and variance" from a texfile. Ich have the following code so far: x <-read.table(file="new.txt") x$gruppe <- 100*rep(1:36, each=20) png(filename = "D:/Uni/new...
Hii, I will save the elements of the vector median<-with(x, tapply(V3, grup, median)). The output of this vector is: 25 50 75 100 125 150 175 200 225 250 275 300 325 350 375 400 425 450...
Thank you all, I did it with "write.table"... greetings, johnh johnhj wrote: > > Hii, > > I will save the elements of the vector median<-with(x, tapply(V3, grup, > median)). The output of this vector is: > > 25 50 75 100 125...
Hii, I will combine some plots. Like this example here http://www.statmethods.net/advgraphs/layout.html I tired to do it for 2 plots but without success. Here is my code: test<-read.table(file="D:/file.txt") space...
Hiii, Thanks to all... Btw.: Is it possible to disable the description of extrem points in boxplots. I mean the points under the whisker's...in the image you can see what I mean... greetings, J http://www.nabble.com...
Hii, Can anybody help me to put a text under the barplots. I will describe the percental between six grouped barplots. I tried to do it with mtext but without success. Here is my code: test <-read.table(file="D...
I tried to do it with: > y <- rnorm(100) > x <- gl(2,50) > boxplot(x,y) > points(x,y) But the problem is, that the the y coordinates are shown for the boxplot and not for "points(x,y)" Is...
I have still the same problem... As you said I tried with par(mfrow=c(2,1)) and par(mfrow=c(1,2)) but without success. Could R compiler be the problem ? Wills, Kellie wrote: > > par(mfrow=c(1,1...
Thank you very much David... Can you also describe me how to describe the standard deviation of the boxplots/matrices ? David Winsemius wrote: > > You do not provide a workable example and it appears you may be > conflating the German and...
Hii Jholtman, I will make a graph of the median values and not to print to the console. I tried to plot with: plot(V3 ~ grup, data = median) ?? but I get an error message. I also tried to print the...
Hii baptiste, I tried you example, but I get still one plot and not as you said two plots ... I use R for Windows, could this have something to do with this problem ? baptiste auguie-2 wrote: > > > On 23 Mar...
@David Winsemius I have one more question to you... lines(boxplot(count ~ spray, data = InsectSprays, col = "lightgray") $stats[c(1),] ) connects the lines through the values. But how can I connect the values min, max, median at the same time...
Ok, sorry... here is my code so far... x <-read.table(file="D:/output.txt") x$grup <- 25*rep(1:144, each=5) median<-with(x, tapply(V3, grup, median)) sd<-with(x, tapply(V3, grup, sd)) I will plot...
Can't find what you're looking for? Try searching with Google .