3
votes
Sample Code for R?
Some simple examples can be found at Mathesaurus - if you know e.g. Python or Matlab, look at the respective comparison charts to fi …
1
vote
csv file with multiple time-series
What I personally would do is to make a script in some scripting language to separate the different data sets before the file is read into R, and possibly do some of the necessary data conversions, …
3
votes
1
vote
Suppressing “null device” output with R in batch mode
One of the nice things about R is that you can view the source of many functions:
> dev.off
function (which = dev.cur())
{
if (which == 1)
stop("cannot shut down de …
3
votes
How can a function paramater be used without mentioning it in the function body?
It's pretty tricky:
m <- match.call(expand.dots = FALSE)
# ...
m[[1L]] <- as.name("model.frame")
m <- eval(m, parent.frame())
The function uses matc …
4
votes
Emacs ESS Mode - Tabbing for Comment Region
Either
(setq ess-fancy-comments nil)
if you never want to indent single-# comments, or
(add-hook 'ess-mode-hook
(lambda () …
1
vote
In R, what is a good way to aggregate String data
Do you mean like this?
> myList <- c("Bob", "Mary", "Bob", "Bob", "Joe")
> r <- rle(sort(myList))
> result <- as.data.frame(cbind(r$values, r$lengths))
> names( …
2
votes
Plotting Simple Data in R
Try this:
data <- read.csv('foo.csv')
plot(serial ~ scale, data)
dev.new()
plot(spawn ~ scale, data)
dev.new()
plot(for. ~ scale, data)
dev.new()
plot(worker ~ scale, data)
…
1
vote
How can I compute the probability at a point given a normal distribution in Perl?
As others have pointed out, you probably want the cumulative distribution function. This can be obtained via the error functio …
5
votes
What does eg %+% do? in R
The ultimate reason is that if you do both general-purpose programming and numerical computations, it is useful to have a large complement of binary operators available. For example, if you store n …
1
vote
using RSPython in MacOSX
To debug this, simply unpack the tar file yourself (tar xzvf RSPython_0.7-1.tar.gz) and run ./configure in the directory created. You should get a config.log file that you …
6
votes
What’s the best trick to speed up a monte carlo simulation?
Go read Dirk Eddelbuettel's talks and parallel computing surve …
1
vote
Connecting GNU R to PostgreSQL
Maybe you need to run require(RPostgreSQL) before you can use dbConnect?
…
0
votes
Workflow for statistical analysis and report writing
At a more "meta" level, you might be interested in the CRISP-DM process model.
…
