Subjects
Home
Reasons to Use R
Block comments in R?
R in Industry
Wikibooks
Conservative "ANOVA tables " in lmer
read spss (package foreign) and SPSS 15 0 files
importing excel file
Ryacas not working properly
Making a case for using R in Academia
eval(parse(text vs get when accessing a function
New project: littler for GNU R
Reading fixed column format
sas get problem
screen resolution effects on graphics
do call( "+ ", )
axis command and excel time format
Making TIFF images with rtiff
Test internet presence
how to get "lsmeans "?
Off topic:Spam on R help increase?
kate editor for R
Install RMySQL with R 2 4 0
Barplot
Rserve and R to R communication
Re: R package development in windows BayesianFilter detected
Statitics Textbook any recommendation?
to draw a smooth arc
regular expression
Hardware for a new Workstation for best performance using R
Bad optimization solution
Suggestions for statistical computing course
Evaluation of defaults in functions
help comparing two median with R
zero random effect sizes with binomial lmer
lattice and several groups
subsetting, aggregating and zoo
Matrix multiplication using apply() or lappy() ?
R package development in windows
Lining up x y datasets based on values of x
Debugging R 's code: boxplot stats
A function for raising a matrix to a power?
subset
Replacement in an expression can 't use parse()
[R] Timings of function execution in R [was Re: R in Industry]
acos(0 5) == pi/3 FALSE
Help with interfacing C & R
R and clinical studies
read fwf and header
setting new working directories
random uniform sample of points on an ellipsoid (e g WG
Weighted least squares
Loop with string variable AND customizable "summary " output
rename cols
Regarding Vista
Multiple Conditional Tranformations
multinomial logistic regression with equality constraints?
A coding question involving variable assignments in ifelse()
help went away from top emacs window : (
Large matrix into a vector
scripts with littler
Links
Home
Official R Project Site
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
rhelp
Page 518 of 675 Previous 100   Previous 10   511   512   513   514   515   516   517   518   519   520   Next 10   Next 100  

gmail filter for R-help and R-devel lists

This is slightly off-topic but I would be interested in whether anyone has succeeded in creating a filter expression for Google 's gmail system that will select messages sent through the R-help and R-d

Graphically centering confidence interval in barplot

Hello I have got a simple "cosmetic " question. I have created a bar plot with confidence intervals using barplot(mean ylim c(0 0.2) las 3 space 0) arrows(1 17 X95p_low 1 17 X95p_hig

download.file() / install.packages() from a url with a username and pass

On Thu 30 Jun 2005 John Marsland wrote > I am trying to create a repository for my own packages as an easy way > to auto install packages on a number of servers. > > Obviously I am able to connec

parsing '... ' function argument?

Dear community I am writing a wrapper for '[ ' operator which is a generic method declared as function(x i j ... drop). It turns out that I need to parse the '... ' argument and this is where I a

download.file() / install.packages() from a url with a username and password

I am trying to create a repository for my own packages as an easy way to auto install packages on a number of servers. Obviously I am able to connect using install.packages() to CRAN without pro

request/suggestion: modified names

For some time now I use a modified version of names (extract direction) of the following type Names <- function (x filter "^ ") { grep(filter names(x) value TRUE) } Request Has anyone already

REĀ : [R] Dispersion parameter in Neg Bin GLM

Edward you also can use the package aod on CRAN see the help page of the function negbin. Best Matthieu An example > library(aod) > data(dja) > negbin(y ~ group + offset(log(trisk)) ~group dj

??: [R] fail in adding library in new version.

Dear Gabor Thank your for helping me so much! I have loaded R the newest version 2.1.1. Then I setup it in the path of D \program files\R\ 1. unpack tools.zip into c \cygwin 2. install Active perl

Dispersion parameter in Neg Bin GLM

Hi Can someone tell me if it is possible to set the dispersion parameter constant when fitting a negative binomial glm in R? I 've looked at the documentation and can 't find the appropriate argument t

how to call egarch of sas in R

I use R to generate data and I need to estimate the data by egarch (that doesn 't have in R). So how I can call egarch from SAS in R. Regards luck

Finding out collinearity in regression

Hi I am trying to find out a collinearity in explanatory variables with alias(). I creat a dataframe dat <- ds[ sapply(ds nlevels) > 2] dat$Y <- Response Explanatory variables are factor and resp

deal package

Hi I am wondering if anyone here used deal package in R to do the bayesian network. I am curious about its scalability how many variables and how many observations can it handle in a reasonable time

Fwd: Extract fixed effects SE from lmer

I forgot to cc the list on this reply. ---------- Forwarded message ---------- From Douglas Bates <dmbates@(protected) > Date Jun 29 2005 6 28 PM Subject Re [R] Extract fixed effects SE from lmer

Extract fixed effects SE from lmer

Hi Does anyone know how to extract fixed effects SE values from generalized linear mixed models estimated using the lmer function in the lme4 library? I searched attributes and structure with no l

sbrier (Brier score) and coxph

Hello I 've decided to try and distill an earlier rather ill focused question to try and elicit a response. Any help is greatly appreciated. Why does mod.cox not work with sbrier whilst mod.km does? Ca

plot (log scale on y-axis)

I am planning to plot my data on log scale (y-axis). There is a parameter in plot function which is plot( ... log "y " ...) While the problem is that it is with base of e. Is there a way to let me

predicted survival curve from a cox model

Hi there I have a predictor varible "class " which is a categorical variable and a ' coxph ' is used to find the coeffients. How can I plot the predicted survival proportion based on this model? T

return NA

A <-c(1 2 NA 7 5) B <-c(3 4 1 4 1) C <-c(6 5 6 NA 9) D <-c(8 7 4 6 2) df1 <-cbind(A B C D) for(i in seq(1 ncol(df1)-1 by 2)) { ifelse(df1[ i] "NA " df1[ i+1] "NA " df1[ ] ) } Tried several varia

Generalized Linear Mixed Models

Hello! I am trying to fit a Generalized Linear Mixed Model ordinally I use GLIMMIX macros in SAS System but I would like to fit this kind of models in R. Could anyone help me on what package

Help with regression modeling

Hello all I 'm using R version 2.0.1. I have been having trouble with my linear modeling. I have a table that looks something like this T RSS DS S LS PF

poly() in lm() leads to wrong coefficients (but correct   residuals)

On Wed 2005-06-29 at 18 19 +0200 Andreas Neumann wrote > Dear all > > I am using poly() in lm() in the following form. > > 1 > DelsDPWOS.lm3 <- lm(DelsPDWOS[ 1] ~ poly(DelsPDWOS[ 4] 3)) > > 2 > D

poly() in lm() leads to wrong coefficients (but correct residuals)

Dear all I am using poly() in lm() in the following form. 1 > DelsDPWOS.lm3 <- lm(DelsPDWOS[ 1] ~ poly(DelsPDWOS[ 4] 3)) 2 > DelsDPWOS.I.lm3 <- lm(DelsPDWOS[ 1] ~ poly(I(DelsPDWOS[ 4]) 3)) 3 > DelsD

MLE with optim

Hello I tried to fit a lognormal distribution by using optim. But sadly the output seems to be incorrect. Who can tell me where the "bug " is? test rlnorm(100 5 3) logL function

Selecting rows regarding the frequency of a factor variab le.

See if this does what you want > dat <- data.frame(f factor(sample(letters[1 10] 100 replace TRUE)) x runif(100)) > str(dat) `data.frame ' 100 obs. of 2 variables $ f Factor w/ 10 levels "a

Selecting rows regarding the frequency of a factor variable.

Hi and sorry to disturb I 'll try to be as clear as possible I want to select rows of a data frame called "Data2.Iso " regarding the frequency of a factor variable called "Variete " that I want " > 4 "

moving correlation coef ?

Hello R gives us the correlation functions cor(). (Many thanks -)) Does it also exist a "moving correlation " coefficient ? (like the moving average). If not could someone give me some infos or lin

"all connections are in use " error during lazyload stage of packa ge ins

On 6/29/05 Tuszynski Jaroslaw W. <JAROSLAW.W.TUSZYNSKI@(protected) > wrote > Hi > > I suddenly started getting strange errors while working on my caTools > package > > >RCMD install C /programs

"all connections are in use " error during lazyload stage of packa   ge install

Hi I suddenly started getting strange errors while working on my caTools package >RCMD install C /programs/R/rw2011/src/library/caTools ...... preparing package caTools for lazy loadin

Memory Management under Linux: Problems to allocate large amounts of dat

Let 's assume this is a 32-bit Xeon and a 32-bit OS (there are 64-bit-capable Xeons). Then a user process like R gets a 4GB address space 1GB of which is reserved for the kernel. So R has a 3GB ad

range of input data

Hi I 've written this function g function(test p1 p2) { test sort(test) merke 0 for (z in 1 length(test)) { F1 ((2*z-1)/length(test)) F21 log(plnorm(test[z] p1 p2)) F22 log(1-plnorm(te
Page 518 of 675 Previous 100   Previous 10   511   512   513   514   515   516   517   518   519   520   Next 10   Next 100