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 409 of 675 Previous 100   Previous 10   401   402   403   404   405   406   407   408   409   410   Next 10   Next 100  

Automatic time zone conversion

Dear R-help I was trying to convert a date and time record extracted from a fortran subroutine I worte and I encounter some problem. The data read in time and date in a format like "2000-05-11_01

computing the variance

hi when i was computing the variance of a simple vector i found unexpect result. not sure whether it is a bug. > var(c(1 2 3)) [1] 1 #which should be 2/3. > var(c(1 2 3 4 5)) [1] 2.5 #which shou

Consult a analysis problem.Thank you!

Hello everybody Could I consult you a question? I am doing an analysis about some data. I used Anova analysis. Its PValue returned is about 0.275 no signal. But through the box-chart I think it e

how to save output all together

Dear R users I have a problem about catch the value from function. I have following two functions (part) sbolus1 <- function() { ....... for( i in 1 Subject) { kel <-par1 Vd <-par2

count.fields vs read.table

Dear R-help I am using R 2.1.1 on Windows XP. I have a tab-delimited data file that has been exported by SAS. The file is reasonably big so I apologise that I can 't give a good toy example. I do t

data frames, na.omit, and sums

Dear R-helpers New to R I 'm in the middle of a project that I 'm using to force me learn R. I 'm running into some behavior that I don 't understand and I need some advice. In the last week I 'v

Understanding nonlinear optimization and Rosenbrock 's banana valley func

Henry Wolkowicz (google his page for lots of optimization references) mentioned to me that that function is a standard example to show that first order methods (e.g. steepest descent) can fail by repe

FW: Error in structural equation model - "The model hasnegativedegrees of fr

Dear R-help list members I forgot to copy my reply to the r-help list. Here 's most of it. John

Understanding nonlinear optimization and Rosenbrock 's banana valley function

GENERAL REFERENCE ON NONLINEAR OPTIMIZATION? What are your favorite references on nonlinear optimization? I like Bates and Watts (1988) Nonlinear Regression Analysis and Its Applications (Wiley

Error in structural equation model - "The model has negativedegrees of freed

Hi John Thanks a lot for the reply. Could you suggest how I can correct this problem? I tried using a correlation matrix instead of raw moments but still got the same error. I also fixed parameter

Construct a data.frame in a FOR-loop

Say I have a FOR-loop for computing powers (just a trivial example) for(i in 1 5) { x <-i^2 y <-i^3 } How can I create a data.frame and a 3D plot of (i x(i) y(i)) i.e. for each iteration Thanks S

tiff graphics

Colleagues I frequently insert PDF graphics created with R into Word (Office 2004 for Mac) documents. The documents are created on either a Linux machine (RedHat 9) or a Mac (Tiger). I am usin

Weibull survival output parameters

Hi All I have conducted the following survival analysis which appears to be OK (acknow. to AZ & PR for solving my earlier issues). surv.mod1 <- survreg( Surv(timep1 relall6)~randgrpc data D

R and databases - a comment

1. That was a part of a private email exchange. It has been suggested that more people may be interested. 2. I did use various databases (significant part of my job) for the last 15 years. Some with

g-and-h and GB2 distribution

Hi Can anyone if R has any package that will generate numbers from g-and-h and GB2 distributions? These are distributions that are like normal distribution but span more of the kurtosis and skewne

fSeries: garchOxFit - is really the example provided not runnig?

Dear R-helpers I have just loaded the fSeries package and I wanted to run the example provided in the documentation of garchOxFit but I got the following > library(fSeries) > ?garchOxFit

fSeries package: ?aparchFit

Dear R-helper I wish to implement the APARCH model as described in the fSeries documentation. But I get the following >library(fSeries) [...] > ?aparchFit No documentation for 'aparchF

how to save images from R-plot after MCMC

Hi group I have a lot of images from R-plot after MCMC How can I save them by file ? Ping YAO *********** [[alternative HTML version deleted]]

Holiday Opportunity for the Museum of Contemporary Art

Holiday Letter Holiday CD / Museum of Contemporary Art Donation / The Perfect Gift art-exchange is primarily a patron of the visual arts however we are happy to support all of the arts. The Holida

Fit Frechet Distribution

hello everybody i want to use the maximum likelihood method to estimate FRECHET parameters of my sample data. Should it work with fitdistr in the package MASS? I only find how to do it for GEV Gumb

Correlation matrix from a vector of pairwise correlations

I 've a vector of pairwise correlations in the order low-index element precedes the high-index element say corr(1 2) 0.1 corr(1 3) 0.2 corr(2 3) 0.3 corr(3 4) 0.4 How can I construct the corresp

how to subset rows using regular expression patterns

hi netters i have a dataframe A with several columns(variables). the elements of column M are character strings. so A$M c( "ab " "abc " "bcd " "ac " "abcd " "fg " ..... "fl "). i wanna extract all the row

How to catch value

Dear R users I have a problem about catch the value from function. I have following two functions (part) fbolus1 <- function() {......... par <-data.frame(Parameter c( "kel " "Vd ") Initial c(0)) ch

R-News 5/2, Bayesian Model Averaging, a detail

This message is in MIME format. The first part should be readable text while the remaining parts are likely unreadable without MIME-aware tools. ---1903425009-1250725552-1133572590 15277 Conte

M-estimator R function question

Dear Rand unfortunately right now none of the R packages can compute Rocke 's constrained M-estimator of scatter and location. I have implemented this estimator as function covMTB in rrcov - see http

cloud() 3D scatter plot

Hello I am creating a 3D scatter plot with the cloud function. I ask it to group my rows by a "Treatment " column (there are 4 different groups). I need to know which points in the plot correspond to

Printing to file from C

Hello I am interfacing R and C code using the function .Call. Is there any way to print to file form C? I.e. is there something analogous to fopen(file1 "w ") fprintf(file1 "%f " ... ) fc

NA as the output of ksmooth

Dear R user My input data positive and negative is complete without missing data. After running ksmooth( ) I receive for $y many NAs. What could be the reasons and how can I receive

Character operations, strsplit()

Dear group could some one help me how i can split a string into pieces and access them. For example > test "this is a test " > typeof(test) [1] "character " > strsplit(test split 'is ') [[1]] [1

plot bg color in Mac OSX

Hi I am running R on my iBook (OS X 10.4) and whenever I try and plot a model that has been run I get a grey background. This makes the plot difficult to read on b&w printouts. I have tried ch
Page 409 of 675 Previous 100   Previous 10   401   402   403   404   405   406   407   408   409   410   Next 10   Next 100