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 619 of 675 Previous 100   Previous 10   611   612   613   614   615   616   617   618   619   620   Next 10  

Lattice tick labels not all appearing

Recently I 've encountered a phenomenon that can be illustrated thus > bwplot(runif(45)*100) Depending on the random seed one or other or both of the outer tick labels are not labelled even t

Extracting values from linear models

Hello I want to use values from the output of linear models done using permuted data to construct a random distribution. The problem I am having is the extraction of a value say the p-value or

Echo in sink? Was: dumping the summary of lm to a text file

NEW QUESTION Is it possible to get the commands echoed in a sink file? ANSWER TO ADRIAN Have you considered "sink "? This captures print results but not the commands that generated

dumping the summary of lm to a text file

Hello list I have a linear regression ctl <- c(4.17 5.58 5.18 6.11 4.50 4.61 5.17 4.53 5.33 5.14) trt <- c(4.81 4.17 4.41 3.59 5.87 3.83 6.03 4.89 4.32 4.69) group <- gl(2 10 20

help on deleting NAs

Dear R friends My goal is to eliminate this specific group(1) if the # of NAs in this group greater than 50%(specifically say greater than 3). Would you please show me how to do it. I have a

Course***R/S-plus Fundamentals and Programming Techniques @ 3
   locations, M

XLSolutions Corporation (www.xlsolutions-corp.com) is proud to announce 2-day "R/S-plus Fundamentals and Programming Techniques " in San Diego www.xlsolutions-corp.com/training.htm Please email us

??????????8???????????????????????????????

r-help@(protected)$BMM(B $B!!!!(B $B!!!!!!(B $B!!(B 8$B@(protected)|1_ <}F~J}K!Ds6!%a%k%^% C4Ev! 'LZB <(B $B

Newbie: How to produce lm results at sub-level within df

Hi Given a data frame df1 application id (appid) project id (pid) person months (pm) function points (fp) How do I produce linear modelling results at the appid level. That is I wo

How to convert a particular column of data.frame from numerical
   into facto

I found ways to convert the entire data frame into factors but could you please tell me a way to convert just few particular columns from numeric to factors. Thank you I believe in equality

Is there a way to specify different significance levels in
   jarque.bera.tes

Dear List I am trying to understand how to use jarque.bera.test() function of the "tseries " package. A numeric vector or time series seems to be the only argument required. What is the defaul

memory garbage management when updating DFs in for loops

Dear R wizards I 'm running analyses on entries residing in the database. A FOR loop brings in entries in batches and populates a DataFrame with them. That is on each run of the for loop the

Creating a new factor from other factors and a date range

Hello useRs I 'm using version 2.0.1 on Windows XP. I have a data.frame with 3 factors and a date. The data.frame is sorted by the 3 factors and by date. I would like to create a new factor des

Fitting distributions

Dear UseRs I 'm glad to inform that an English version of my contribute concerning fitting distributions is now available on CRAN http //cran.r-project.org/doc/contrib/Ricci-distributions-en.

Why good employees leave...and how to keep them.

You are receiving this email from Integrative Learning International because you purchased a product/service or subscribed on our website. To ensure that you continue to receive emails from us

lme4--- >GLMM

Hello I 'm very sorry for my repeated question which i asked 2 weeks ago namely i 'm interested in possibly simple random-part specification in the call of GLMM(...) (from lme4-package)

eigen vector question

Sorry to bother everyone but I 've looked in all of the help files and manuals I have and I can 't find the answer to this question. I 'm doing principle component analysis by calculating the eigen

Re: [R] Converting a list to a matrix - I still don 't think I have
   it   right

Does do.call( "rbind " l2) do what you want? -roger michael watson (IAH-C) wrote > Hi > > We have touched on this before but I don 't think I quite got it right. > > So I have a lis

RE: [R] Converting a list to a matrix - I still don 't think I have
   itright

This should do it matrix(unlist(mylist) nrow length(mylist) by T)

Re: [R] Converting a list to a matrix - I still don 't think I have it
   right

Mick Does this do it? mymat <- do.call( 'rbind ' l2) rownames(mymat) <- names(l2) Sean On Feb 17 2005 at 9 36 AM michael watson ((IAH-C)) wrote > Hi > > We have touched on this be

RE: [R] Converting a list to a matrix - I still don 't think I
   hav e it right

Try mat <- do.call( "rbind " l2) Not sure if the names get put into the rownames automatically but if not just do rownames(mat) <- names(l2) Andy > From michael watson (IAH-C) >

Converting a list to a matrix - I still don 't think I have it
   right

Hi We have touched on this before but I don 't think I quite got it right. So I have a list each element of which is a a vector of 2 numbers > l2 $cat000_a01 [1] 0.3429944 4.5138244 $c

How to get interction terms first in a model

Consider the following two specifications of a model library( splines ) x <- 1 100 y <- rnorm( 100 ) w <- rep( 1 100 ) A <- factor( sample( 1 2 100 replace T ) ) B <- factor( sample( lette

A vector or array of data frames

Hi A simple question again but I can 't find it by google-ing R-help. Quite simply I want to read in the contents of a number of files using read.table and assign the results to elements of

short plots: lwd, margin and postscript behavior

C��zar Freitas wrote > Hi all. > I 'm working with a short plot (3x3 inches) but the > results (via postscript command) are not nice. The lwd > command don 't affect the lines (that are very lar

Getting *types* of arguments?

Hello world short question is there a possibility to get a list of arguments of a function *with* variable/parameter types? formals() gives me the names of the parameters but says nothing a

Factor level coloring in trellis plot

Hi ) Was just wondering whether someone could help me with adjustments to trellis plots (parallel). I 've got two way multivariate data. I want to make parallel plots for one of the factor

Again: Variable names in functions

Hello still I have difficulties with variable names in functions. I know the famous example form help for deparse/substitute but I will give a simpler one to explain my problem. I know from Rei

package bulding in windows.

Hello everyone. I am using R 2.0.1 in windows XP sp2 and I want to create a package. I get the following errors when I run these commands at the dos prompt. Please help. Than

Re: [R] Error in eval(expr, envir, enclos) : numeric envir arg not
   of length o

On Thu 17 Feb 2005 Stephen Choularton wrote > I am working with a largish dataset of 25k lines and I am now tying to > use predict. > > pred predict(cuDataGlmModel length + meanPitch + min

Error in eval(expr, envir,
   enclos) : numeric envir arg not of length one

I am working with a largish dataset of 25k lines and I am now tying to use predict. pred predict(cuDataGlmModel length + meanPitch + minimumPitch + maximumPitch + meanF1 + meanF2 + meanF3 +
Page 619 of 675 Previous 100   Previous 10   611   612   613   614   615   616   617   618   619   620   Next 10