Re: [R] Mac Text editors

2012-09-27 Thread Emilio López
Hello, I am not a Mac user, but I use Eclipse+StatET in both Windows and Linux, and it is the best IDE (not just text editor) for me. It supports code syntax, R and Sweave editors, object explorer, document outline, debugging, ... Besides, Eclipse has other plugins that may be useful for some tasks

[R] [R-pkgs] Package SixSigma updated to version 0.7-0

2012-12-03 Thread Emilio López
Dear list, A new version of the SixSigma package has been updated at CRAN. See details below, or visit http//www.sixsigmawithr.com http://cran.r-project.org/web/packages/SixSigma/index.html NEWS SixSigma 0.7-0 -- * New function ss.cc for control charts (currently supporting moving-r

Re: [R] Very simple loop

2011-11-14 Thread Emilio López
the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > -- _ *Emilio López Cano* +34 665 676 225 Department of Statistics ans Operations Res

Re: [R] Generalized Additive Models: How to create publication-ready regression tables

2011-10-08 Thread Emilio López
Hi, I usually use xtable package to generate LaTeX tables. It also works for HTML format. A reproducible example: - library(gam) library(xtable) model <- gam(Kyphosis ~ s(Age,4)

Re: [R] Generalized Additive Models: How to create publication-ready regression tables

2011-10-09 Thread Emilio López
You may "build" your customized matrix merging the components of the objects before calling the xtable function: my.matrix <- rbind(model$coefficients, [vector containing errors]) xtable(my.matrix) (I'm sorry I don't know exactly where the standard errors are stored / how to compute them) You can