similar to: Boxplot 5% and 95% quantile instead of 25% and 75%

Displaying 20 results from an estimated 500 matches similar to: "Boxplot 5% and 95% quantile instead of 25% and 75%"

2015 Nov 02
2
[StructurizeCFG] Trouble with branches out of a loop
Hi, I've been investigating the StructurizeCFG pass, and it looks like it has trouble handling CFG edges that break out of a loop and go directly to the function exit. Am I running up against a bug in the structurizer, or a general limitation of the algorithm used? As an aside, is there any documentation for the algorithm used? Is it based on a published paper? The input IR I have is the
2011 Apr 17
3
Box plot with 5th and 95th percentiles instead of 1.5 * IQR: problems implementing an existing solution...
Hi all, I'm just getting started with R and I would appreciate some help. I'm having trouble creating a boxplot with whiskers at the 95th and 5th percentiles instead of at 1.5 * IQR. I have read the relevant documentation, and checked existing mails on this topic. I found a small modification that should work : https://stat.ethz.ch/pipermail/r-help/2001-November/016817.html and tried to
2012 Jan 29
1
Modifying whiskers in boxplots?
Hello, I know this has been covered on here before, but as a complete novice, I need a little more guidance. I would like to produce boxplots with the whiskers extending to the 10 and 90th percentiles. I found this code: myboxplot.stats <- function (x, coef = NULL, do.conf = TRUE, do.out = TRUE) { nna <- !is.na(x) n <- sum(nna) stats <- quantile(x, c(.1,.25,.5,.75,.9), na.rm
2006 May 12
1
superpose two variables in lattice/xyplot
Dear R users, I try to use xyplot() to display two different response variables from the same dataframe per panel, but don't succeed: xyplot(ptot.seaslog ~ vmcwit | seas, data=reeks, as.table=TRUE, panel = function(x,y){ panel.xyplot(x, y, ylim=c(0,1)) panel.superpose(x=reeks$vmcwit, y=reeks$ptotbin, panel.groups = "panel.xyplot",
1999 Jul 06
2
eval(), expression()
Dear R-Users! My aim is to produce boxplots without the outliers included in the plot. I started to write a function that looks something like: myboxplot <-function(x,fa) { bpdata <- boxplot(x~fa,plot=FALSE) bpnames <- names(bpdata) for (JJ in bpnames) { command <- paste("bpdata$",JJ,"$out <- numeric(0)",sep=""); eval(command) }
2016 Apr 07
1
identifying outliers
Thanks for writing this great piece of code. x = rnorm(100) boxplot(x) # you shouldn't see any outliers here although sometimes yow will # lets add some outliers intentionally x = c(21, 20, 25, x) # now 10, 15 and 20 are outliers myboxplot <- boxplot(x) # now you should see your three outliers myboxplot$out # it will print the values of the outliers How does one amend
2011 Sep 26
2
Boxplot BUT with Mean, SD, Max & Min ?
People, It appears that there is no way of getting Boxplots to plot using Mean, SD, Max & Min - is there something else that would do what I want? I couldn't find it . . Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au
2005 Jul 06
1
getpeername failed, Error was Transport endpoint is not connected
Hello, Using Samba 3.014 on SLES9 on a proliant Xeon server. All clients (XP) fixed IP addresses, Ip <> hostname in hosts table. During the boot of a XP client I receive these messages in the log file's Can anybody explain why or what is causing this. Most of the XP clients reporting none of these messages. Jul 6 12:50:24 server4 smbd[27787]: [2005/07/06 12:50:24, 0]
2014 Sep 01
1
Correlation Matrix with a Covariate
R Help - I'm trying to run a correlation matrix with a covariate of "age" and will at some point will also want to covary other variables concurrently. I'm using the "psych" package and have tried other methods such as writing a loop to extract semi-partial correlations, but it does not seem to be working. How can I accomplish this? library(psych) > set.cor(y =
2008 Jan 07
2
Samba locking with NFS backend.
Hello, I'm in a bit of a loss at the moment. We have the following situation, we are running Samba for a lot of small companies that need fileservices for there Windows Terminal Servers that they use through a thin client on a Fiber / Lan extention to our datacentre. We have this samba running on 2 linux hosts (Fedora Core 5 and Fedora 7) with a ldap backend for all the domains. This works
2009 Jun 29
2
OT: Mobile voip - WCell
Not related to asterisk: but I figured someone here would have used them before? Has anyone tried http://www.wcell.com/ab/ZnJpZW5kLzEwNjI= yet? Looks like they have a voip app for your mobile handset sending voice calls out over your data service or wifi for 1c per minute calls both in the USA and internationally. Wondering if i should sign up with them for my trip to Australia
2020 Jun 19
2
Inclusive language in LLVM: can we rename `master` branch?
On Fri, 19 Jun 2020 at 16:43, Robinson, Paul via llvm-dev <llvm-dev at lists.llvm.org> wrote: > If anyone's keeping track of the voting: > +1 for "dev" (contrasts with "release") > +1 for "trunk" (historical and consistent with the branch metaphor) > -1 for "main" Hey! At least one +1 for "main" from me! Also, on -1 for
2020 Jun 19
3
Inclusive language in LLVM: can we rename `master` branch?
On 2020-06-19, Justin Hibbits via llvm-dev wrote: >On Fri, 19 Jun 2020 17:38:02 +0100 >Renato Golin <rengolin at gmail.com> wrote: > >> On Fri, 19 Jun 2020 at 16:43, Robinson, Paul via llvm-dev >> <llvm-dev at lists.llvm.org> wrote: >> > If anyone's keeping track of the voting: >> > +1 for "dev" (contrasts with "release")
2004 Sep 28
10
Bandwidth Metering
Hi, How do you meter the amount of bandwidth a user has consumed (as webhosting companies do) under linux? I have searched everywhere, but have been unable to find a solution. Apologies if this is the wrong forum. Thanks, Patrick _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2002 Feb 21
2
Samba and IEE1394
This might not be the correct group to post to, but maybe somone could tell me wich groupd it should go to (as I haven't found any good ones). I have Windows XP machines with IEE1394 (FireWire) LAN. Windows has built in support for OHCI compliant cards and can use them as a normal NIC, but with 400Mbit. This sollution is cheap and alot faster than normal a 100Mbit LAN. The problem is now
2010 Aug 18
1
Again: wget parameters
Hi Ricardo and everybody In this old post to rhelp you say that the problem was solved but not what the sollution was. I have the same problem now. I want to read a Excel file from a google site that has restricted access so I need to give a username and password at some point. I could not find an example or a help file that shows how this can be done. You post is one of few but it does not
2008 Mar 10
2
Tinn-R related problem
Greetings! I have an issue with an R editor (namely Tinn-R). A few weeks ago all of a sudden the backspace, enter and direction keys were not working. I updated Tinn-R to the newest version but still no sollution. After this I tried reinstalling it (prior to that I removed Tinn-R and deleted all the "leftovers" manually) and still no change. In every other execution (e.g. when I save a
2023 Oct 27
2
State of the gluster project
Hi all, I just have a general thought about the gluster project. I have got the feeling that things has slowed down in the gluster project. I have had a look at github and to me the project seems to slow down, for gluster version 11 there has been no minor releases, we are still on 11.0 and I have not found any references to 11.1. There is a milestone called 12 but it seems to be stale. I have hit
2009 Feb 11
2
Question about apply()
Hello, everyone! Assume you have this data: data <- structure(c(66.609375, 67.09375, 66.40625, 66.734375, 67.109375, 66.875, 66.09375, 65.921875, 66.546875, 66.140625, 66.140625, 65.65625, 65.875, 65.59375, 65.515625, 66.09375, 66.015625, 66.140625, 66.109375, 66.421875, 1702.7, 1647.7, 1649.4, 1639.9, 1696.4, 1710.9, 1690.2, 1677.9, 1694.4, 1713.9, 1713.9, 1705.4, 1708.4, 1692.9, 1689.6,
2006 Oct 09
1
[Mac OS X 10.4] object R_loess_raw not found (reason found)
Well... this may be a red herring after all, but it's an interesting one! It turns out I have got DYLD_LIBRARY_PATH set. This gets exported to R (or rather, affects the loader that loads the R process?), and somehow mixes up the way symbols are exported. Something that applies to launching R from the command line (/usr/bin/R) AND via LaunchServices (open -a R). Once I noticed that invoking