similar to: shading in overlap between two ranges

Displaying 20 results from an estimated 90 matches similar to: "shading in overlap between two ranges"

2007 Apr 12
3
Putting 2 breaks on Y axis
R plotting experts: I have a bivariate dataset composed of 300 (x,y) continuous datapoints. 297 of these points are located within the y range of [0,10], while 2 are located at 20 and one at 55. No coding errors, real outliers. When plotting these data with a scatterplot, I obviously have a problem. If I plot the full dataset with ylim = c(0,55), then I cannot see the structure in the data in
2009 Aug 18
4
Transpose a dataset
Hi Everyone, I have a dataset like this mean sd 0% 25% 50% 75% 100% n BODY TEMPERATURE 36.41099 0.4015699 35.1 36.22222 36.5 36.66667 37.1 89 DIASTOLIC BLOOD PRESSURE 73.60079 9.4656186 50.0 67.00000 73.0 80.00000 95.0 253 HEIGHT 171.94000 9.2011670 153.5 166.50000 173.0 176.25000 190.0
2013 Jul 29
3
duda reemplazar valores en data frame según condición
Estimados quería realizarles una consulta: Trabajo con una tabla con 23 registros, la cual tiene en la columna "*ar4*" valores de una variable llamada ranking para cada registro, y una columna "percentil" donde le voy a colocar el nivel de percentil en el que se encuentra ese valor (ar4) de cada uno de esos 23 registros. La tabla es la siguiente:: código padre n ar4
2000 May 01
1
tick marks on mfrow=c(3,3) plot
I am generating an array of similar plots using the par(mfrow=c(3,3)) method. Everything works fine except the plot only puts y-axis tick marks on cells in column one and x-axis tick marks on cells in row three. I would like tick marks on both the x and y axix of all 9 plots in my array. I am generating plots using the following two functions three.by.three.plot <- function(ss) {
2011 Aug 20
2
a Question regarding glm for linear regression
Hello All, I have a question about glm in R. I would like to fit a model with glm function, I have a vector y (size n) which is my response variable and I have matrix X which is by size (n*f) where f is the number of features or columns. I have about 80 features, and when I fit a model using the following formula,? glmfit = glm(y ~ x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 + x10 + x11 + x12 + x13
2018 Mar 14
2
truncation/rounding bug with write.csv
Hello, I have looked on https://www.r-project.org/bugs.html , but it seems that this is the only way to do it. The issue is that the precision used by write.csv is on consistant for big files. See the following code: First I create a large dataframe filled with random uniform values. Then I write it to .csv and print out the first and last lines. df = data.frame(replicate(100, runif(1000000,
2018 Mar 14
2
truncation/rounding bug with write.csv
I don't see the issue here. It would be helpful if people would report their sessionInfo() when reporting whether or not they see this issue. Mine is > sessionInfo() R version 3.4.3 (2017-11-30) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Arch Linux Matrix products: default BLAS/LAPACK: /usr/lib/libopenblas_haswellp-r0.2.20.so locale: [1] LC_CTYPE=en_US.UTF-8
2018 Mar 14
2
truncation/rounding bug with write.csv
To my surprise, I can confirm on Windows 10 using R 3.4.3 . As tail is not recognized by Windows cmd, I replaced with: system('powershell -nologo "& "Get-Content -Path temp.csv -Tail 1') The last line shows only 7 digits after the decimal, whereas the first have 15 digits after the decimal. I agree with Dirk though, 1.6Gb csv files are not the best way to work with
2001 May 15
8
New printing concept of wine
Hi, I´m allways using the recent versions from cvs (prebuild from dailywine) and I stated that I have to reconfigure my wine printing. Before I used the wineps.drv driver but now wine seams to work with the printers defined in /etc/printcap. But there are some little questions left by me although I got it printing well: 1. How can I make another printer as default printer different from the
2002 Sep 13
1
Derive 5.05
Derive 5.05 works fine with the "wine-cvs-unstripped-090902.rpm" except for the unreadable font in the command line that is used to input math expression. Is it a bug, or does it depend on any missing windows's file ? Thank you
2001 Mar 28
3
Wine Config
I've just compiled Wine using the transgaming patch and now need to setup the config files and just wondering if there are any nice and easy programs to set this up for me! I've tryed 'WineSetupTK' but I always run my machine as root and this does not allow you to edit the root config files! So my question is Are there any other wine config setup programs? Thanks
2002 Jan 27
1
Converting Win fon-fonts to linux pcf fonts
Hi, I tried to convert win fon fonts to linux pcf fonts using fnt2bdf as it is described in the wine documentation. On some fonts fnt2bdf said rthat there is no charset set information in the fon file so that the -c option has to be used. But what charset option should be used for such fonts? fnt2bdf's help does print out a example where -c winsys is used, but never prints out all
2013 Mar 10
1
[Bug 62115] New: Refresh rate stuck at 60Hz
https://bugs.freedesktop.org/show_bug.cgi?id=62115 Priority: medium Bug ID: 62115 Assignee: nouveau at lists.freedesktop.org Summary: Refresh rate stuck at 60Hz QA Contact: xorg-team at lists.x.org Severity: critical Classification: Unclassified OS: Linux (All) Reporter: josealb77 at hotmail.com
2013 Apr 05
1
Accessing examplars in apcluster (apcluster package)
Hi, I was wondering how it was possible to access the actual cluster exemplars from the APResult class. Currently it only spits it out onto the terminal if you type the object but there is no other way to see which one is the examplar. Would appreciate any help. Thanks, Sachin [[alternative HTML version deleted]]
2011 Jun 01
1
as.character limits length of result for formula
If you want a character representation of a long formula (or a formula with long names), you can use: as.character(my.formula) However restriction on length of an as.character result returns only the beginning of a long formula, and without comment. In most cases, the following expression provides the complete result: paste(my.formula[[2]], " ~ ",
2001 Dec 03
3
Wine and Derive 5
Hi, I am running the mathematic program Derive 5 in wine so far successful but it doesn't display the Greek and mathematic symbols correctly. The are some fonts in wine dir, but they are not recognized by mkttfdir. Has anyone got the symbols working? Or has anyone got ideas? TIA Alex
2010 Mar 02
3
Keeping the order of data set when plotting
I have a data frame with 3 columns and I want to order the entire list by one column and then plot. I used order() and it does order the data set but when I plot it is as if the set is as it was originally. I also can't figure out how to plot two sets of data on the same graph. I have, Occupation American.Workers Foreign.Workers Accountant 12 2 Engineer 45 54 Doctor 50 37 I want
2004 May 11
1
calling data frames
Dear List, I've around 1000 *.txt files, I've generate with other software. I've now done the following code (below). My question is how can I automate this (with do.call () ?), so it could be done for all the *.txt files. Thanks in advance, Rog??rio names<- list.files() file <- "BLU_Var_%04d.txt" for(i in 1:1000){
2010 May 11
1
Help with Names
Hi - a newbie question, if someone can please help.... I want to change X1, X2,,.....to X.1 X.2 etc in the names below. I am using the Principal Component Regression function (pcr) and it seems to want it this way > datap3.pcr <- pcr(water ~ X, 10, data = datap3, Validation ="cv") Error in model.frame.default(formula = water ~ X, data = datap3) : invalid type (list) for
2007 Apr 11
8
graphs superimposed on pictures?
Hi: I am doing some work that involves plotting points of interest superimposed on photographs and maps. I can produce the plots fine in R, but so far I have had to do the superimposition externally, which makes it tedious to do exploratory work. I have looked to see if there is some capability to put a background picture on a plot window, but I have not found anything. Advice, anyone? Cheers