Skip to content

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.

29 results for “from:Daniel Mastropietro”

Design library
Daniel Mastropietro · May 28, 2002 · r-help

Hello, Can anybody point me where I can find the design library? I have seen it mentioned several times, but it is not in the list of available packages in the R website. Thanks Daniel -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read...

Label points in pairs()
Daniel Mastropietro · Jul 24, 2002 · r-help

Hello, I would like to know if there is a simple way of adding labels to the points in a pairs() plot. I am thinking of something like using the text() function when adding labels to a regular plot. Thanks...

Point labels
Daniel Mastropietro · May 21, 2002 · r-help

Hello, Is there an option I can easily set to put labels next to the points in a simple plot? The closest I got to it was to use the option pch, but this replaces the point symbol with the...

Generating AR1 data
Daniel Mastropietro · Oct 10, 2002 · r-help

Try arima.sim() in the ts package. At 12:16 AM 10/10/2002 -0600, Andy Bunn wrote: >Hi, Is there an easy way to generate data with temporal autocorrelation? I >want to generate data with something like rnorm where...

Removing columns from data frame
Daniel Mastropietro · Jul 22, 2002 · r-help

Hello, Is there an easy way to remove a few columns from a data frame by indicating the column names? I am thinking of an operator like the "-" to remove the columns when referenced by column number, and I don...

import data from excel
Daniel Mastropietro · Jul 16, 2002 · r-help

In case you have access to Excel, you can open the file and save it in Comma Separated Values format and then read it into R using read.csv. At 05:23 PM 16/7/2002 +0200, jimmy melinard wrote...

Test for random effects in GLM
Daniel Mastropietro · Aug 1, 2002 · r-help

Hello, I would like to know how to test whether the 'subject' random effect is significant in a generalized linear model. I am using glmmPQL() in the MASS package. The response is binary and my model only has an intercept...

tsplot
Daniel Mastropietro · Jul 24, 2002 · r-help

At 03:17 PM 23/7/2002 +0100, ripley at stats.ox.ac.uk wrote: >On Tue, 23 Jul 2002, Enrico De Giorgi wrote: > > > I would like to plot n time series together. I've defined a matrix w, where...

two small wishes for R
Daniel Mastropietro · Oct 31, 2002 · r-help

I support these wishes... Daniel Mastropietro --------------------- 1. allows underscore as part of a variable name 2. Uses C or Java style comments mark. Jason ===== Jason G. Liao, Ph.D. Division of Biometrics University of Medicine and Dentistry of New Jersey...

help
Daniel Mastropietro · Jul 4, 2002 · r-help

Define the variable as a factor. Suppose you have a response 'y' and a regressor 'x' that has the binary variables, then do: lm(y ~ as.factor(x)); This is also valid for any categorical variable, not only for binary...

Automatic adjustment of axis ranges
Daniel Mastropietro · Jul 17, 2002 · r-help

Hello, I would like to know if it is possible to add new points to a given plot and that the axis ranges be automatically adjusted so that all the new points are seen in the plot. For example, I...

Converting the columns of a data frame to numeric
Daniel Mastropietro · Sep 1, 2002 · r-help

Hello, I have a data frame whose columns are factors with numeric levels and I want to convert the columns to numeric so that I can treat the data frame as a matrix. I found a way of doing this...

lm.influence in multivariate linear model
Daniel Mastropietro · Jun 26, 2002 · r-help

Hello, I have fitted a multivariate linear model using lm() but then I cannot apply any function available for diagnostics, such as lm.influence(), rstudent() etc. I get the following error message when calling any of the above functions. "Error...

R hangs up unexpectedly
Daniel Mastropietro · Jul 6, 2002 · r-help

Hello, I had the following problem occurring too often lately: R hangs up unexpectedly. It usually happens when I am switching windows within R or when I am going back to the R window from another program. At first I...

xaxp and grid()
Daniel Mastropietro · Jun 25, 2002 · r-help

Hello, I use the option xaxp in the plot function and it is not recognized. This affects the result of the function grid(), since it takes the default tick marks used by the plot function, which is not what I...

Output and history
Daniel Mastropietro · Jul 16, 2002 · r-help

Hello, I have the following two questions, rergarding: (Output) 1) Is it possible to have the output of a command automatically displayed, without explicitly requesting it after the command, and without using the print() function? For example, I want to...

Substitution of the *value* of a variable
Daniel Mastropietro · Jul 22, 2002 · r-help

Hello, I have the following situation: Suppose I have the string "test(x)", and I want to substitute x by y. I know that this can be done by using the following commands: string <- parse( text="test(x)" )[[1]]; do...

Rounding
Daniel Mastropietro · Sep 19, 2002 · r-help

You could find the number of digits by doing a while loop: ndigits <- function(x) { n <- 0; rounding <- 1; while (rounding > 0) { rounding <- floor(abs(x)/10^n) * 10^n; n <- n + 1; } return(n-1) } Daniel Mastropietro At 09...

Assignment converts variable to factor
Daniel Mastropietro · Jul 9, 2002 · r-help

Hello, I would like to know if this behaviour in R is as expected. I have a data frame 'dat' with column var1 being character (and not factor). Then I create a new column 'var2' by: > dat[,"var2"] <- dat$var1...

Converting dates?
Daniel Mastropietro · Jul 24, 2002 · r-help

There are the functions mdy.date() and as.date() in the survival library, that convert to Julian date. At 02:33 PM 23/7/2002 -0300, marcelo wrote: >Dear R-users > >I have some doubts about with converting dates... >e...

Can't find what you're looking for? Try searching with Google .