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.

207 results for “from:Michael Bedward”

problems with which
Michael Bedward · Aug 15, 2010 · r-help

Hello Nicola, > sentences_trial <- sentences[which(sentences$Cond!= "an"),] That should be == "an" instead of = "an" == is the test for equality whereas = is assignment Michael

Generation of Normal Random Numbers
Michael Bedward · Jan 11, 2011 · r-help

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

Creating R objects in Java
Michael Bedward · Oct 4, 2010 · r-help

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

Where the data file is stored?
Michael Bedward · Aug 12, 2010 · r-help

By default everything in an R workspace (data objects, functions etc) will be stored in a file called .RData in the working directory. Please see http://cran.r-project.org/doc/contrib/Paradis-rdebuts_en.pdf Michael

How do I subtract sequential values ?
Michael Bedward · Nov 28, 2010 · r-help

On 29 November 2010 15:09, Joshua Wiley <jwiley.psych at gmail.com> wrote: > (I hope I'm like wine and get better with age or....) > Sigh, me too - but I suspect I'm heading more towards vinegar Michael

Regular Expression
Michael Bedward · Aug 8, 2010 · r-help

Was going to suggest gsub("^[0-9]+ (SPE )?([^ -])( -.*)?", "\\3", s) but I see Wu Gong beat me to the punch with a nicer one :) On 9 August 2010 12:13, Wu Gong <wg2f at mtmail.mtsu.edu> wrote: > > gsub(pattern...

image plot but data not on grid.
Michael Bedward · Aug 7, 2010 · r-help

> If it's regular, but incomplete, that method will work. ?If it's > irregular, then no image method will work without first interpolating > a regular grid. Thanks Hadley. As I suspected, but ggplot2 is so very clever that I thought...

About .RData
Michael Bedward · Aug 15, 2010 · r-help

> Furthermore can I run following command on R? >> rm /home/userA/.RData .RData contains all of the objects in a workspace (your data, functions etc.). If you start R in a directory that contains a .RData file it will be...

image plot but data not on grid.
Michael Bedward · Aug 7, 2010 · r-help

On 7 August 2010 06:26, Hadley Wickham wrote: > library(ggplot2) > qplot(x, y, fill = z, data = df, geom = "tile") Hi Hadley, I read the original question as being about irregularly spaced data. The above method doesn't seem to...

Confidence Intervals for logistic regression
Michael Bedward · Aug 7, 2010 · r-help

On 7 August 2010 19:56, Martin Maechler wrote: > I'm coming late to the thread, > but it seems that nobody has yet given the advice which I would > very *strongly* suggest to anyone asking for confidence > intervals in GLMs...

Pointing to a specific place on the x-axis with an arrow
Michael Bedward · Oct 6, 2010 · r-help

On 6 October 2010 20:51, Ivan Calandra <ivan.calandra at uni-hamburg.de> wrote: > > Moreover, Josh wanted the arrow to be really big. Is it possible to make > it bigger? I would be interested too! > Sorry - missed that bit...

Games
Michael Bedward · Aug 13, 2010 · r-help

On 13 August 2010 23:29, peter dalgaard <pdalgd at gmail.com> wrote: > >> Is there a prize :-) > > Maybe you want to sponsor one, because your solution certainly doesn't work! > > I see 10 games in the 10th round, all involving...

Confidence Intervals for logistic regression
Michael Bedward · Aug 7, 2010 · r-help

> I was aware of this option.? I was assuming it was not ok to do fit +/- 1.96 > se when you requested probabilities.? If this is legitimate then all the > better. I don't think it is. I understood that...

Regular Expression
Michael Bedward · Aug 8, 2010 · r-help

And my \\3 should have been a \\2 anyway ! On 9 August 2010 12:23, Michael Bedward <michael.bedward at gmail.com> wrote: > Was going to suggest gsub("^[0-9]+ (SPE )?([^ -])( -.*)?", "\\3", s) > but I see Wu Gong beat me...

question!!!!
Michael Bedward · Aug 4, 2010 · r-help

Hi > I made some design matrix X(in linear regression model) > > I there any method to normalize X? You can normalize a matrix column-wise like this: # m is a matrix apply(m, 2, function(x) x / max(x) ) Or...

repeat a function
Michael Bedward · Sep 29, 2010 · r-help

On 30 September 2010 02:48, Michael Larkin <mlarkin at rsmas.miami.edu> wrote: > > > > testdat <- replicate( 50, growth[ sample(nrow(growth), 8, rep=TRUE) ] ) > > I can't seem to get it to work. ?I keep getting the error message of...

Interpolate? a line
Michael Bedward · Sep 15, 2010 · r-help

Hello Alex, Here is one way to do it. It works but it's not pretty :) interp <- approx(c(2, 62), c(3, 34), method="linear", xout=2:62) m <- matrix(c(interp$x, round(interp$y)), ncol=2) tie...

Games
Michael Bedward · Aug 13, 2010 · r-help

OK, second attempt. I think this one is a goer (hope)... teams <- LETTERS[1:11] matches <- combn(teams, 2) draw <- data.frame(team1=matches[1,], team2=matches[2,]) # someone will know how to do this in one line... time <- numeric...

Results with name of dataset
Michael Bedward · Aug 9, 2010 · r-help

On 9 August 2010 19:30, Evgenia <evgts at aueb.gr> wrote: > > Function ex works fine BUT I don't want the file of results to have the name > "data Example" but > "exampledata_9810 Example" > How can I do this...

(no subject)
Michael Bedward · Nov 20, 2010 · r-help

On 20 November 2010 20:57, Stephen Liu <satimis at yahoo.com> wrote: > Hi Michael, > > Thanks for your advice. > > data() only displays a list of files. ?Is there an easy to show the brief > summary of files rather than calling...

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