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.

323 results for “from:Daniel Nordlund”

Stata Database & R
Daniel Nordlund · Oct 27, 2012 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20121027/56ab9ffb/attachment.pl>

Announcing a new R news site: R-bloggers.com
Daniel Nordlund · Dec 5, 2009 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20091205/71666169/attachment-0001.pl>

How to rebuild an R package that has been removed from CRAN?
Daniel Nordlund · Aug 19, 2013 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20130819/999c9e06/attachment.pl>

Revolution Analytics reading SAS datasets
Daniel Nordlund · Feb 9, 2011 · r-help

Has anyone heard whether Revolution Analytics is going to release this capability to the R community? http://www.businesswire.com/news/home/20110201005852/en/Revolution-Analytics-Unlocks-SAS-Data Dan Daniel Nordlund Bothell, WA USA

How to convert European short dates to ISO format?
Daniel Nordlund · Jun 10, 2020 · r-help

On 6/10/2020 1:20 AM, Luigi Marongiu wrote: > isoDates = as.Date(oriDates, format = "%m/%d/%y") You need to use the format for European short dates. isoDates = as.Date(oriDates, format = "%d/%m/%y") Hope this is helpful...

Bootstrap and average median squared error
Daniel Nordlund · May 22, 2018 · r-help

On 5/22/2018 2:32 AM, Rui Barradas wrote: > bootMedianSE <- function(data, indices){ > ???? d <- data[indices, ] > ???? fit <- rq(crp ~ bmi + glucose, tau = 0.5, data = d) > ???? ypred <- predict(fit) > ???? y <- d$crp > ???? median(y - ypred)^2 > } since the OP...

relative risk regression with survey data
Daniel Nordlund · Sep 13, 2010 · r-help

I have been asked to look at options for doing relative risk regression on some survey data. I have a binary DV and several predictor / adjustment variables. In R, would this be as "simple" as using the survey package to...

Generating random integers
Daniel Nordlund · Apr 11, 2009 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org > [mailto:r-help-bounces at r-project.org] On Behalf Of skayis selcuk > Sent: Saturday, April 11, 2009 11:24 PM > To: r-help at r-project.org > Subject: [R...

Sampling
Daniel Nordlund · Feb 5, 2008 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf > Of Judith Flores > Sent: Tuesday, February 05, 2008 10:52 AM > To: RHelp > Subject: [R] Sampling > > Hi there, > > I want...

how to combine multiple indicator variables in a single factor
Daniel Nordlund · Dec 18, 2009 · r-help

Say I have a dataframe like this: df <- data.frame(cbind(c(1,0,0,1),c(0,1,0,0),c(0,0,1,0))) names(df) <- c('a','b','c') I would like to create a factor in...

installation of R on Linux
Daniel Nordlund · Jan 27, 2006 · r-help

R-users, I am new user of Linux (have been using Win XP Pro) and wanted to install R. Since I am just beginning to learn Linux I was wondering, where in the directory structure do users of Linux usually...

ifelse(is.na), with function inside
Daniel Nordlund · Jun 17, 2009 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org > [mailto:r-help-bounces at r-project.org] On Behalf Of Grzes > Sent: Tuesday, June 16, 2009 10:51 PM > To: r-help at r-project.org > Subject: Re: [R...

How to detect and exclude outliers in R?
Daniel Nordlund · Jan 18, 2010 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] > On Behalf Of vikrant > Sent: Monday, January 18, 2010 10:09 PM > To: r-help at r-project.org > Subject: [R] How...

Cannot install package write.xls
Daniel Nordlund · Oct 7, 2016 · r-help

On 10/7/2016 10:50 PM, T.Riedle wrote: > Dear R users, > > > > I am trying to export my results to excel using write.xls or write.table but I cannot install the packages. > > > > Instead, I get the message > > > > Warning...

where "should" R be installed?
Daniel Nordlund · Oct 8, 2006 · r-help

I am a new user of Linux (long time user of Windows) whose only training is from books, articles, and just playing with Linux. I have built and installed R from source, and also installed from RPMs (SuSE). I am...

product of vector elements
Daniel Nordlund · Jan 12, 2008 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf > Of Gerard Smits > Sent: Saturday, January 12, 2008 4:39 PM > To: r-help at r-project.org > Subject: [R...

how to implement string pattern extraction in R
Daniel Nordlund · Aug 22, 2010 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] > On Behalf Of Waverley @ Palo Alto > Sent: Sunday, August 22, 2010 3:05 PM > To: r-help > Subject: [R] how to implement...

is there a way to let R do smart matrix-vector operation?
Daniel Nordlund · Mar 6, 2006 · r-help

> -----Original Message----- > From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] > On Behalf Of Michael > Sent: Monday, March 06, 2006 5:56 PM > To: Gabor Grothendieck > Cc: R-help at stat...

sprintf() question
Daniel Nordlund · May 17, 2009 · r-help

When I type the following, I get results different from what I expected. > sprintf('%a',3) [1] "0x1.8" Shouldn't the result be [1] "0x1.8p+2" I read through the help ?sprintf and didn't find anything that...

Getting codebook data into R
Daniel Nordlund · Feb 11, 2012 · r-help

> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] > On Behalf Of barny > Sent: Saturday, February 11, 2012 10:04 AM > To: r-help at r-project.org > Subject: Re: [R...

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