[R] R: R: Is there a way to extract some fields data from HTML pages through any R function ?

2009-07-06 Thread mauede
It helps. But it is overly sophisticated. I have already downloaded and used the Excel file containing the validated stuff. Since there are R commands to download gzip as well as FASTA files, I wonder whether it is possible to automatically download the Excel file from

Re: [R] bigglm() results different from glm()

2009-07-06 Thread utkarshsinghal
Thank you Mr. Lumley and Mr. Greg. That was helpful. Regards Utkarsh Thomas Lumley wrote: On Fri, 3 Jul 2009, utkarshsinghal wrote: Hi Sir, Thanks for making package available to us. I am facing few problems if you can give some hints: Problem-1: The model summary and residual

Re: [R] Incidence Function Model in R help

2009-07-06 Thread sjkimble
R Help: When I look at the object S, I see about half of them are zeroes. I've address the object S being zero so often by changing the value of alpha, which I'm allowed to do according to the author. All values of S are non zero and should not give Inf. The expectation of a binomial model

Re: [R] NA values trimming

2009-07-06 Thread nyk
Thanks for your reply! This is what I was looking for! I'm using nas1 - apply(data_matrix,1,function(x)sum(is.na(x))/nrow(data_matrix)) nas2 - apply(data_matrix,2,function(x)sum(is.na(x))/ncol(data_matrix)) The thing about significantly more isn't really a helpful as I look at the data now. I

Re: [R] NA values trimming

2009-07-06 Thread hadley wickham
On Mon, Jul 6, 2009 at 12:12 AM, nykn...@nyk.ch wrote: Thanks for your reply! This is what I was looking for! I'm using nas1 - apply(data_matrix,1,function(x)sum(is.na(x))/nrow(data_matrix)) nas2 - apply(data_matrix,2,function(x)sum(is.na(x))/ncol(data_matrix)) You can simplify this a

[R] transform multi skew-t to uniform distribution

2009-07-06 Thread Roslina Zakaria
Hi R-users,  I have a data from multi skew t and would like to transform each of the data to uniform data.  I tried using 'pmst' but only got one output:   rr1 - as.vector(r1);rr1  [1]  0.7207582  5.2250906  1.7422237  0.5677233  0.7473555 -0.6020626 -2.1947872 -1.1128313 -0.6587316 -1.1409261  

Re: [R] NA values trimming

2009-07-06 Thread nyk
Thanks a lot, this works! The one I used before was wrong: data_matrix [,1] [,2] [,3] [,4] [,5] [1,]11 NA11 [2,]22222 [3,]33333 [4,] NA NA NA NA NA [5,]55555 [6,] NA66 NA6 [7,] NA NA

[R] problem with internal functions in Windows

2009-07-06 Thread Antonio.Gasparrini
Dear R users, I included 2 internal functions in the package 'dlnm', called 'mkbasis' and 'mklagbasis'. Despite they are not meant to be called by the users, I included them in the namespace in order to make them available, keeping the process more transparent and giving the opportunity to

Re: [R] OK - I got the data - now what? :-)

2009-07-06 Thread Mark Wardle
Hi. As I said in my first email, converting your data into a long format makes a lot of sense. I'm sorry that you find it hard ... to understand why this would make plotting easier. Wide format: Subject ID, Experiment ID, humidity, light, whatever, T1, T2,T3,T4. is much better rotated to be

Re: [R] crr - computationally singular

2009-07-06 Thread Laura Bonnett
Hi Everyone, Thank you for all your comments and suggestions. I determined that I had a full rank model matrix by using the code: qr(covaeb)$rank This is 17 which is equal to the number of covariates in the matrix, covaeb. I cannot invert the model matrix using 'solve' as my matrix is not

Re: [R] R: R: Is there a way to extract some fields data from HTML pages through any R function ?

2009-07-06 Thread Gabor Grothendieck
If the question is to how download and read into R an Excel file at a known location into an R data frame then try this: library(gdata) URL - http://mirecords.umn.edu/miRecords/download_data.php?v=1; DF - read.xls(URL) See ?read.xls for more info. On Mon, Jul 6, 2009 at 2:27 AM, mau...@alice.it

Re: [R] crr - computationally singular

2009-07-06 Thread Peter Dalgaard
Laura Bonnett wrote: Hi Everyone, Thank you for all your comments and suggestions. I determined that I had a full rank model matrix by using the code: qr(covaeb)$rank This is 17 which is equal to the number of covariates in the matrix, covaeb. I cannot invert the model matrix using

[R] odfWeave: odt-file damaged

2009-07-06 Thread ukoenig
Dear all, I am doing my first steps with odfWeave. After running the r code (see below), I am trying to open the ODF-document with open office, but I am getting the error message: The file is damaged, but it can be repaired. If I confirm the question and repair the file with open office, I can

[R] odfWeave: odt-file damaged

2009-07-06 Thread ukoenig
Dear all, I am doing my first steps with odfWeave. After running the r code (see below), I am trying to open the ODF-document with open office, but I am getting the error message: The file is damaged, but it can be repaired. If I confirm the question and repair the file with open office, I can

[R] Hartigan's Dip test

2009-07-06 Thread James Allsopp
Hi, I just got a value for the dip test out of my data of 0.074 for a sample size of 33. I'm trying to work out what this actually means though? Could someone help me relate this to a p-value? Thanks James __ R-help@r-project.org mailing list

Re: [R] Hartigan's Dip test

2009-07-06 Thread Ted Harding
On 06-Jul-09 12:39:29, James Allsopp wrote: Hi, I just got a value for the dip test out of my data of 0.074 for a sample size of 33. I'm trying to work out what this actually means though? Could someone help me relate this to a p-value? Thanks James Have a look at

[R] R- NLP on R but ....

2009-07-06 Thread Rahul Varshney
I'll appreciate the help on the following problem: I solved many Nonlinear programming problems with nonlinear constraintsRdonlp is working well but i am unable to get INTEGER data with nonlinear constraints in Rdonlp. Is it possible to get Integer Values of parameters in any package of R

Re: [R] Hartigan's Dip test

2009-07-06 Thread Christian Hennig
James, I assume that you use package diptest. Look up ?qDiptab for a table of quantiles from which you can obtain your p-value. data(qDiptab) qDiptab You then look up your statistic value (0.074) for a suitable n (n=30, say), and you take one minus the Pr value you find on top of the table.

Re: [R] Incidence Function Model in R help

2009-07-06 Thread David Winsemius
On Jul 5, 2009, at 5:15 PM, sjkimble wrote: R Help: When I look at the object S, I see about half of them are zeroes. I've address the object S being zero so often by changing the value of alpha, which I'm allowed to do according to the author. All values of S are non zero and should

Re: [R] Incidence Function Model in R help

2009-07-06 Thread David Winsemius
On Jul 5, 2009, at 5:15 PM, sjkimble wrote: R Help: When I look at the object S, I see about half of them are zeroes. I've address the object S being zero so often by changing the value of alpha, which I'm allowed to do according to the author. All values of S are non zero and should

[R] Solving quadratic equations with covariance term

2009-07-06 Thread Stein, Luba (AIM SE)
Hi, I would like to solve the following equation with R: Cov(A,x)=0. A is a given matrix, x is the an unknown vector. Is there any nice solution for this? Thank you for your help. Best wishes, Luba Stein [[alternative HTML version deleted]]

Re: [R] Remove all spaces from a string so it can be used by assign()

2009-07-06 Thread John Kane
instrument.input[,6] appears to be a vector of factors. You are putting the underlying factor number into data. Assuming instrument.input[,6] is supposed to be numeric you will need to convert from factor. See the FAQ Part 7 R Miscellanea How do I convert factors to numeric? for that. ---

Re: [R] working with texts

2009-07-06 Thread Helter Two
WinXP, R-2.9.1 Thanks to Don for the suggestion and especially to Phil for the perfect and elegant solution! It shows that R is a piece of miracle, when in the hands of those who really know how to work it. Since my originally request turned out to be easy to solve, let me move one step back in

Re: [R] Random Forest Variable Importance Interpretation

2009-07-06 Thread Alex Roy
Hi, Are you looking for variable selection? If this is the case than you can use LASSO, Elastic net, Sparse PLS regression methods which encourages variable selection. PCA does not select variables as you get all your variables in the PCs. You can sparse PCA. Regards Alex On Wed, Jun 24,

Re: [R] Incidence Function Model in R help

2009-07-06 Thread David Winsemius
It appears to me that you really have no idea what the original author was doing. I honestly don't either. I never used the sweep operator and I don't know what his S's represent. I do understand what offsets represent in the context of glm(), and this set of operations does not fit my

Re: [R] crr - computationally singular

2009-07-06 Thread Ravi Varadhan
Hi Laura, I do think that the problem occurs during the iterations of the Newton's method for solving the estimating equations in the Fine Gray model. One way to overcome this would be to use the generalized inverse in the Newton algorithm. But this would yield non-unique, possibly large,

Re: [R] bigglm() results different from glm()+Another question

2009-07-06 Thread utkarshsinghal
The AIC of the biglm models is highly dependent on the size of chunks selected (example provided below). This I can somehow expect because the model error will increase with the number of chunks. It will be helpful if you can provide your opinion for comparing different models in such cases:

[R] Extracting only the non-repeated rows of matrices

2009-07-06 Thread dreamworx
I have 2 matrices. One which contains a complete set of row combinations. Another which contains a subset of the first. What I would like to extract is the rows which are in the first but not repeated in the second. For instance if the following were my two matrices, A [,1] [,2] [,3] [,4]

[R] Counting the number of cycles in a temperature test

2009-07-06 Thread Steller, Antje (GQL-LM)
Hello dear R-users, today I have a question that I completely do not know how to solve (R-newbie!). In a temperature chamber I have measured temperature over time. The result is shown in the attached eps-file (if attachments are shown): There are two temperature levels, 150°C and -40°C. A

Re: [R] NA values trimming

2009-07-06 Thread nyk
Thanks again for all the help, now I was able to write the function I need: namax - function(m,mp) { # arguments: matrix, maximum percentage of NA values allowed in rows/colums c1 - 0 c2 - 0 repeat { nas1 - rowMeans(is.na(m)) nas2 -

Re: [R] R- NLP on R but ....

2009-07-06 Thread Hans W Borchers
Rahul Varshney itsrahulvarshney at gmail.com writes: I'll appreciate the help on the following problem: I solved many Nonlinear programming problems with nonlinear constraintsRdonlp is working well but i am unable to get INTEGER data with nonlinear constraints in Rdonlp. Is it

[R] Error exit, tauk2. IFAULT = 12

2009-07-06 Thread I.Puga-Gonzalez
Dear McLeod, I am a PhD student working with the Kendall package in R. I used this package to make the so-called TauKr matrix correlation analysis (Hemelrijk, 1990). However, lately I've been getting this warning: Error exit, tauk2. IFAULT = 12. From the forums I've been looking into, I

[R] Performance degradation on multi-processor system

2009-07-06 Thread Rajiv Garg
Hi, We are seeing performance degradation when running the same R script in multiple instances of R on a multi-processor system. We are a bit surprised by this because we figured that each instance of R is running in its own processor, and therefore running a second, third or fourth instance

[R] how to apply a self-written function to a data frame

2009-07-06 Thread Jens Bölte
Hello, I have written a function in order to analyse gaze paths. It works with the test data but when I try to apply the function to a data frame that stores the real data in columns I receive the error message that the In if (pp 1) { : condition has length 1 only the first element will

[R] output too large to display all

2009-07-06 Thread Christine Griffiths
Hi R Users, Hopefully a very simple solution, but I am stumped nevertheless. I am running glmer in which the output is too large so that not all the correlations are displayed. I expanded the max.print as recommended on this website. However, this still does not allow me to see the relevant

Re: [R] Remove all spaces from a string so it can be used by assign() -- A Fortune?

2009-07-06 Thread Bert Gunter
The below seems like a Fortunes candidate to me. -- Bert Gunter Genentech Nonclinical Biostatistics -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Greg Snow Sent: Friday, July 03, 2009 7:00 PM To: Kurt Smith; r-help@r-project.org

Re: [R] OK - I got the data - now what? :-)

2009-07-06 Thread Mark Knecht
Hi Mark, Don't be the least bit sorry that I'm finding any of this hard to understand. That's my problem. I ordered the Phil Spektor's Data Manipulation with R (Use R) book last night as I realize I need to go through some sort of training. Hopefully that will help clear up some of my questions

Re: [R] how to apply a self-written function to a data frame

2009-07-06 Thread Richard . Cotton
I have written a function in order to analyse gaze paths. It works with the test data but when I try to apply the function to a data frame that stores the real data in columns I receive the error message that the In if (pp 1) { : condition has length 1 only the first element will

Re: [R] output too large to display all

2009-07-06 Thread jim holtman
Use 'sink' or 'capture.output' to put the output to a text file that might be easier to view. You did not indicate what OS you are using or what interface that appears to be limiting what you are seeing. On Mon, Jul 6, 2009 at 11:34 AM, Christine Griffithschristine.griffi...@bristol.ac.uk wrote:

[R] Heatmap - dendrogram ordering

2009-07-06 Thread nyk
Is it possible to have the dendrogram created by heapmap.2 and as.dendrogram in the same ordering for the same data? Or will there always be a randomly different ordering of the equivalent clusters? -- View this message in context:

Re: [R] output too large to display all

2009-07-06 Thread David Winsemius
On Jul 6, 2009, at 11:34 AM, Christine Griffiths wrote: Hi R Users, Hopefully a very simple solution, but I am stumped nevertheless. I am running glmer in which the output is too large so that not all the correlations are displayed. Details? Code? Guess: I have on more than one

Re: [R] Counting the number of cycles in a temperature test

2009-07-06 Thread jim holtman
You can count the number of times the values make a transition through some threshold and average over some short time period because you probably get multiple transitions in a short time as it is approaching the threshold. Once you have that, you can count then number of times it happens. On

Re: [R] Extracting only the non-repeated rows of matrices

2009-07-06 Thread jim holtman
Here is one way of doing it: set.seed(1) a - matrix(sample(1:2, 10, TRUE), ncol=2) b - matrix(sample(1:2, 4, TRUE), ncol=2) a [,1] [,2] [1,]12 [2,]12 [3,]22 [4,]22 [5,]11 b [,1] [,2] [1,]12 [2,]11 # create a vector of values

Re: [R] Extracting only the non-repeated rows of matrices

2009-07-06 Thread Henrique Dallazuanna
Try this: subset(merge(as.data.frame(A), cbind(as.data.frame(B), ID=1), all = T), is.na(ID), select = -ID) On Mon, Jul 6, 2009 at 8:39 AM, dreamworx andy_wools...@hotmail.com wrote: I have 2 matrices. One which contains a complete set of row combinations. Another which contains a

Re: [R] Problem with Extracting Fitted Values from fGarch package

2009-07-06 Thread murilodoi
Good day, Using R-project version 2.9.0 and the latest version of package fGarch you can extract fitted values by the following commands: fit - garchFit(~ garch(1,1), residuals_TASI, trace = TRUE, include.mean = FALSE) fitted_TASI - f...@fitted Murilo Eiji Doi Mohammad Sabr wrote: Good

[R] ReShape chicks example - line plots

2009-07-06 Thread Mark Knecht
Hi, In the examples from the ReShape package there is a simple example of using melt followed by cast that produces a smallish amount of output about the chicks database. Here's the code: library(reshape) names(ChickWeight) - tolower(names(ChickWeight)) chick_m - melt(ChickWeight, id=2:4,

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread Henrique Dallazuanna
Try this: diet.s - subset(DietResults, diet == 1) matplot(diet.s[,-(1:2)], type='l', col = ifelse(as.numeric(as.character(diet.s$chick)) %% 2, 'red', 'green')) On Mon, Jul 6, 2009 at 3:22 PM, Mark Knecht markkne...@gmail.com wrote: Hi, In the examples from the ReShape

Re: [R] output too large to display all

2009-07-06 Thread Lyman, Mark
Take a look at the print method for the mer class, class?mer. I believe setting the correlation argument to FALSE will give you what you want. See the examples. Mark Lyman, Statistician Engineering Systems Integration, ATK Hi R Users, Hopefully a very simple solution, but I am stumped

Re: [R] R: R: Is there a way to extract some fields data from HTML pages through any R function ?

2009-07-06 Thread Daniel Nordlund
-Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of mau...@alice.it Sent: Sunday, July 05, 2009 11:28 PM To: Martin Morgan Cc: r-h...@stat.math.ethz.ch Subject: [R] R: R: Is there a way to extract some fields data from HTML

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread Mark Knecht
Wow Henrique! Close in only 2 lines. Very, very cool. There seem to be a couple of problems: 1) It seems that none of the chicks are showing up at X=0 on my plot even though they all have data in column 0. 2) For chicks with NA's it appears that matplot continues their line to the right. Is

[R] drawing an axis using axis command

2009-07-06 Thread John Kane
I am clearly doing something extremely stupid here but why is this code not writing the axis values for this graph? Any suggestions gratefully received. structure(list(year = c(1911L, 1921L, 1931L, 1941L, 1951L, 1961L, 1971L, 1981L, 1991L, 2001L, 2006L), total = c(7206643L, 8788483L,

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread hadley wickham
On Mon, Jul 6, 2009 at 8:22 PM, Mark Knechtmarkkne...@gmail.com wrote: Hi,   In the examples from the ReShape package there is a simple example of using melt followed by cast that produces a smallish amount of output about the chicks database. Here's the code: library(reshape)

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread David Winsemius
I think the offered solution was reading values down the columns rather than keeping the row values together. I think you need to a) supply a proper x and b) transpose: matplot(x = as.numeric(names(diet.s)[3:14]), y= t(diet.s[,-(1:2)]), type='l', xlab=Days ???, ylab=Weights in (..)

Re: [R] allocation/initialization of arrays/lists

2009-07-06 Thread Don MacQueen
Initializing like this is generally recommended only when the object sizes get very big. Otherwise it's ok to grow your object as you go (i.e., append to it on each iteration). When I want to initialize a list, I do this: array - list() length(array) - n ## then, for (i in 1:n) {

Re: [R] drawing an axis using axis command

2009-07-06 Thread Don MacQueen
Please show the error message. At 12:13 PM -0700 7/6/09, John Kane wrote: I am clearly doing something extremely stupid here but why is this code not writing the axis values for this graph? Any suggestions gratefully received. structure(list(year = c(1911L, 1921L, 1931L, 1941L, 1951L, 1961L,

Re: [R] drawing an axis using axis command

2009-07-06 Thread Don MacQueen
After your plot command, type par()$usr It will show you that your x axis range is 1907 to 2009. But you tried to put the axis labels at x=1 to 11, which are not within the range of the data. -Don At 12:13 PM -0700 7/6/09, John Kane wrote: I am clearly doing something extremely stupid

[R] Testing memory limits in R??

2009-07-06 Thread Scott Zentz
Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure --prefix=/usr/local/R-2.9.1 --enable-Rshlib --enable-BLAS-shlib --enable-shared --with-readline --with-iconv --with-x

Re: [R] bigglm() results different from glm()+Another question

2009-07-06 Thread Greg Snow
Are you sure that you are fitting all the models on the same total data? A first glance looks like you may be including more data in some of the chunk sizes, or be producing an error that update does not know how to deal with. -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center

Re: [R] drawing an axis using axis command

2009-07-06 Thread John Kane
Of course. I actually tried that but apparently messed it up. My thanks to eveyone. I knew it was something relatively obvious but I was completely blanking out on it. --- On Mon, 7/6/09, Don MacQueen m...@llnl.gov wrote: From: Don MacQueen m...@llnl.gov Subject: Re: [R] drawing an axis

[R] mlbench dataset question

2009-07-06 Thread spime
Dear R-users, Recently, I am facing some problems when converting mlbench data into matrix format. library(mlbench) data(BostonHousing) X- BostonHousing[,1:13] y-BostonHousing[,14] I want to convert X and y into matrix form. I am getting these obvious errors... t(X)%*%y Error in t(X) %*% y :

Re: [R] Testing memory limits in R??

2009-07-06 Thread Jonathan Greenberg
You could probably just make a big array and watch top usage -- a 5gb array would do the trick -- if you can break 4gb you are golden. big_vector=c(1:100) and keep adding zeroes... --j Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory

[R] R won't recognize the order

2009-07-06 Thread petals25
Dear R experts, I was just wondering why R is not picking up the order that I am putting in. Total ordering is the first argument of the sinDAG function from the package 'SIN'. Description of sinDAG This function computes the matrix of simultaneous p-values for SIN model selection for acyclic

Re: [R] Testing memory limits in R??

2009-07-06 Thread David Winsemius
On Jul 6, 2009, at 4:42 PM, Jonathan Greenberg wrote: You could probably just make a big array and watch top usage -- a 5gb array would do the trick -- if you can break 4gb you are golden. big_vector=c(1:100) and keep adding zeroes... Except the maximum size for a vector (and I wonder

Re: [R] drawing an axis using axis command

2009-07-06 Thread Greg Snow
If the structure is your xx variable, then you are creating a plot that goes from 1911 to 2006 (plus a little to either side), then asking the axis function to draw and label an axis from 1 to 11, which is very far off the plotting device to the left. Try giving the axis function a list of

Re: [R] Testing memory limits in R??

2009-07-06 Thread Duncan Murdoch
On 7/6/2009 3:52 PM, Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure --prefix=/usr/local/R-2.9.1 --enable-Rshlib --enable-BLAS-shlib --enable-shared

Re: [R] Testing memory limits in R??

2009-07-06 Thread Peter Dalgaard
Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure --prefix=/usr/local/R-2.9.1 --enable-Rshlib --enable-BLAS-shlib --enable-shared --with-readline

[R] a question about splint

2009-07-06 Thread jlfmssm
I am using splint to perform cubic spline interpolation, but I don't know how this function set up knots? Does anyone know about this? Thanks, jlf [[alternative HTML version deleted]] __ R-help@r-project.org mailing list

[R] Decompose function : calculation of each component

2009-07-06 Thread m.gharbi
Hello, I'd like to know how R does calculate each component in the decompose() function? More precisely, how is calculated the final trend component in this function? Thanks for your answer Myriam -- View this message in context:

Re: [R] mlbench dataset question

2009-07-06 Thread David Winsemius
On Jul 6, 2009, at 3:16 PM, spime wrote: Dear R-users, Recently, I am facing some problems when converting mlbench data into matrix format. library(mlbench) data(BostonHousing) X- BostonHousing[,1:13] If you look at X with str(), you will see it has a factor variable.

Re: [R] Solving quadratic equations with covariance term

2009-07-06 Thread Rolf Turner
On 7/07/2009, at 2:15 AM, Stein, Luba (AIM SE) wrote: Hi, I would like to solve the following equation with R: Cov(A,x)=0. A is a given matrix, x is the an unknown vector. Is there any nice solution for this? What on earth do you mean by ``Cov(A,x)''? This makes no sense at all.

Re: [R] Testing memory limits in R??

2009-07-06 Thread David Winsemius
On Jul 6, 2009, at 5:01 PM, David Winsemius wrote: On Jul 6, 2009, at 4:42 PM, Jonathan Greenberg wrote: You could probably just make a big array and watch top usage -- a 5gb array would do the trick -- if you can break 4gb you are golden. big_vector=c(1:100) and keep adding zeroes...

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread Mark Knecht
On Mon, Jul 6, 2009 at 12:37 PM, David Winsemiusdwinsem...@comcast.net wrote: I think the offered solution was reading values down the columns rather than keeping the row values together. I think you need to a) supply a proper x and b) transpose: matplot(x = as.numeric(names(diet.s)[3:14]),

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread Mark Knecht
On Mon, Jul 6, 2009 at 12:28 PM, hadley wickhamh.wick...@gmail.com wrote: On Mon, Jul 6, 2009 at 8:22 PM, Mark Knechtmarkkne...@gmail.com wrote: Hi,   In the examples from the ReShape package there is a simple example of using melt followed by cast that produces a smallish amount of output

Re: [R] Testing memory limits in R??

2009-07-06 Thread Andy Zhu
check Memory in R: ?Memory --- On Mon, 7/6/09, Scott Zentz ze...@email.unc.edu wrote: From: Scott Zentz ze...@email.unc.edu Subject: [R] Testing memory limits in R?? To: r-help@r-project.org Date: Monday, July 6, 2009, 3:52 PM Hello Everyone,    We have recently purchased a server which has

Re: [R] ReShape chicks example - line plots

2009-07-06 Thread Mark Knecht
On Mon, Jul 6, 2009 at 2:45 PM, Mark Knechtmarkkne...@gmail.com wrote: SNIP 1) I think it's displaying all the chicks, not just the chicks on diet 1. I presume that this is because you chose group=chick from chick_m but when I went to the qplot help page I didn't find group documented. Is

Re: [R] Testing memory limits in R??

2009-07-06 Thread Duncan Murdoch
On 06/07/2009 4:16 PM, Peter Dalgaard wrote: Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure --prefix=/usr/local/R-2.9.1 --enable-Rshlib

Re: [R] Testing memory limits in R??

2009-07-06 Thread Marc Schwartz
On Jul 6, 2009, at 8:39 PM, Duncan Murdoch wrote: On 06/07/2009 4:16 PM, Peter Dalgaard wrote: Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure

Re: [R] output too large to display all

2009-07-06 Thread milton ruser
Hi Christine, How about try again? Cheers milton On Mon, Jul 6, 2009 at 11:34 AM, Christine Griffiths christine.griffi...@bristol.ac.uk wrote: Hi R Users, Hopefully a very simple solution, but I am stumped nevertheless. I am running glmer in which the output is too large so that not

Re: [R] Testing memory limits in R??

2009-07-06 Thread David Winsemius
On Jul 6, 2009, at 9:39 PM, Duncan Murdoch wrote: On 06/07/2009 4:16 PM, Peter Dalgaard wrote: Scott Zentz wrote: Hello Everyone, We have recently purchased a server which has 64GB of memory running a 64bit OS and I have compiled R from source with the following config ./configure