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.

230 results for “from:Francisco J. Zagmutt”

Excel file
Francisco J. Zagmutt · Jul 12, 2004 · r-help

Hi Pernilla Under menu go to help >manuals > R Data Import/Export and read the section on spreadsheet-like data import. Also you can try ?read.table Francisco >From: "Pernilla Karlsson" <pernilla.karlsson at mednut.ki.se> >To: <R-help...

trim a string
Francisco J. Zagmutt · Jun 17, 2005 · r-help

RSiteSearch("trim") will give you a lot of answers. You cal also use the higher level function trim{R.oo} i.e.: library(R.oo) x=" e " trim(x) [1] "e" >From: Omar Lakkis <uofiowa at gmail.com> >Reply-To...

Nested Logistic Regression
Francisco J. Zagmutt · May 10, 2005 · r-help

For generalized linear mixed models you can use glmmPQL from MASS. You also might want to take a look at library(glmmML). Is this what you are after? Francisco >From: Kel Lam <lamkelj at yahoo.com> >To: r-help at...

Potential minor GUI bug
Francisco J. Zagmutt · Jun 16, 2005 · r-help

Is this an interface bug? Using RGUI for windows I run into a "Not Responding" process (I "smartly" coded an infinite loop, yaiks!), I hit esc and the interpreter was stopped and I recovered the console functionality but the caption...

R API call from delphi
Francisco J. Zagmutt · Sep 8, 2005 · r-help

Follow this thread http://finzi.psych.upenn.edu/R/Rhelp02a/archive/50598.html Cheers Francisco >From: Laurent TESSIER <famille.tessier at wanadoo.fr> >Reply-To: famille.tessier at wanadoo.fr >To: r-help at stat.math.ethz.ch >Subject: [R...

MLE in R
Francisco J. Zagmutt · Dec 7, 2009 · r-help

Hello Liang, Besides looking at ?optim, you may also want to look into this nice working example www.mayin.org/ajayshah/KB/R/documents/mle/mle.html Regards, Francisco Francisco J. Zagmutt Vose Consulting 1643 Spruce St., Boulder Boulder, CO...

Write a summary or a longer text to a graphical device
Francisco J. Zagmutt · Jul 13, 2006 · r-help

?text ?plotmath Cheers Francisco Dr. Francisco J. Zagmutt College of Veterinary Medicine and Biomedical Sciences Colorado State University >From: "Torsten Mathies" <torsten.mathies at matec-gmbh.com> >To: <r-help at stat.math.ethz.ch> >Subject: [R] Write a summary...

looking for the source
Francisco J. Zagmutt · Jun 28, 2005 · r-help

Off course. That's the beauty of open source :) You will find the source code at http://cran.r-project.org/ under "R Sources". Cheers Francisco >From: "Philip Bermingham" <pberming at research.ryerson.ca> >To: <r-help at stat.math...

Sorry! Previous subject was cell means model in LME
Francisco J. Zagmutt · Oct 8, 2003 · r-help

Hi everybody I want to specify the contrasts to build a cell means model on LME (each coefficient is the mean value of the independent variable for the specific category of a factor variable) when there are several factors as...

explanation of data sets variables
Francisco J. Zagmutt · Feb 7, 2006 · r-help

library(boot) ?city Francisco >From: Kuba <kalar1 at wp.pl> >To: R-help at stat.math.ethz.ch >Subject: [R] explanation of data sets variables >Date: Wed, 08 Feb 2006 00:35:51 +0100 > >Dear all, > where I can find...

memory over load?
Francisco J. Zagmutt · Aug 2, 2007 · r-sig-epi

This is not an epi question. You may want to place it into the general list. If you were to do that, I would have pointed you to gc() :-) Regards, Francisco Lynn Disney wrote: > I have been running logistic regression...

test for contingency table when there are many zeros
Francisco J. Zagmutt · Aug 8, 2007 · r-help

fisher.test(tt) Francisco gallon li wrote: > Here is my table > >> tt > A B > 1 297 398 > 2 470 376 > 3 30 23 > 4 3 3 > 5 0 0 > > b/c two cells are zero, I can't use chisq...

labelling dots in plots
Francisco J. Zagmutt · Feb 15, 2006 · r-help

Take a look at ?identify Francisco >From: "Anne Katrin Heinrichs" <heinrichs at dkrz.de> >To: <r-help at stat.math.ethz.ch> >Subject: [R] labelling dots in plots >Date: Wed, 15 Feb 2006 18:43:20 +0100 > >Hello, > >I would...

question about selecting observations
Francisco J. Zagmutt · Jul 17, 2007 · r-sig-epi

oeps, I found a typo in my previous email just after hitting the send button :-( See update below: datasorted <- data[order(data$ID, data$date, decreasing=TRUE),] firstobs<- datasorted[!duplicated(datasorted$date),] Francisco Lynn Disney wrote: > I have a large...

Quadratic Programming
Francisco J. Zagmutt · Aug 17, 2007 · r-help

Read the posting guide at http://www.R-project.org/posting-guide.html and try the suggestions under "Do your homework before posting:" You probably won't have to go past bullet 3 to find the answer to your question...

about McNemar
Francisco J. Zagmutt · Apr 12, 2006 · r-help

Please consider using R's built-in help capabilities before posting a question. help.search("McNemar") RSiteSearch("McNemar") Regards Francisco >From: "XinMeng" <xmeng at capitalbio.com> >Reply-To: XinMeng <xmeng at capitalbio.com> >To: r-help at stat.math.ethz...

Random Sequence
Francisco J. Zagmutt · Apr 12, 2007 · r-help

There are many ways to do this. The first that comes to my mind is sample(c(1,-1),100,TRUE). Notice that sample also has a prob argument that may be useful for you. Francisco Anup Nandialath wrote: > Dear...

advanced plotting
Francisco J. Zagmutt · Nov 21, 2006 · r-help

Look at the argument cex within ?par You can also call cex directly from plot (notice in this case the number you use in cex is multiplied by the cex value set using par()) par(cex=1) plot(1,cex...

question about sm.density
Francisco J. Zagmutt · Oct 28, 2005 · r-help

Please read the documentation before posting a question. If you read the documentation for sm.density you will see that the argument props will do what you want. i.e. y <- cbind(rnorm(50), rnorm(50)) sm.density(y, display...

Is there any good tools to facilitate us to create R functions?
Francisco J. Zagmutt · Aug 17, 2007 · r-help

Hello Zhijie, You can many specific commands and tricks by using R commander's menus: install.packages("Rcmdr") library(Rcmdr) However, I can not stress enough that if you want to be proficient and sound in your work with R...

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