Tagged Questions

1
vote
1answer
22 views

Does R have an assert statement as in python?

a statement that checks if something is true and if not prints a given error message and exits
3
votes
0answers
35 views

[R] how to do a data.table merge operation

I've been digging through the documentation for the data.table package (a replacement for data.frame that's much more efficient for certain operations), including Josh Reich's presentation on SQL and …
1
vote
3answers
65 views

Using ggplot, how to have the x-axis of time series plots set up automatically?

Is there a way of plotting a univariate time series of class "ts" using ggplot that sets up the time axis automatically? I want something similar to plot.ts() of base graphics. Also it seems to me …
2
votes
2answers
41 views

Merging two Data Frames using Fuzzy/Approximate String Matching in R

DESCRIPTION I have two datasets with information that I need to merge. The only common fields that I have are strings that do not perfectly match and a numerical field that can be substantially …
5
votes
3answers
133 views

Sweave for python

I've recently started using Sweave* for creating reports of analyses run with R, and am now looking to do the same with my python scripts. I've found references to embedding python in Sweave docs, …
7
votes
2answers
80 views

higher level functions in R - is there an official compose operator or curry function?

I can create a compose operator in R: `%c%` = function(x,y)function(...)x(y(...)) To be used like this: > numericNull = is.null %c% numeric > numericNull(myVec) [2] TRUE FALSE but I …
2
votes
2answers
115 views

In R, what is the difference between these two?

0.9 == 1-0.1 >>> TRUE 0.9 == 1.1-0.2 >>> FALSE
2
votes
1answer
52 views

Generating dendrograms from genealogy data in R

Is there any way to generate a dendrogram where each level of the graph represents a generation and only sons of the same father are connected at each level? I'm attempting to use R's hclust and plot …
3
votes
2answers
422 views

How do I plot a classification graph of a SVM in R

I have an svm in R and I would now like to plot the classificaiton space for this machine. I have found some examples on the Internet, but I can't seem to make sense of them. My R script is as …
5
votes
1answer
70 views

Can R read from a file through an ssh connection?

R can read files on a web server using convenient syntax such as data <- read.delim("http://remoteserver.com/file.dat") I wonder if there is a way to do something similar with a file on an ssh …
7
votes
1answer
172 views

Painless way to install a new version of R?

Andrew Gelman recently lamented the lack of an easy upgrade process for R (probably more relevant on Windows that Linux). Does anyone have a good trick for doing the upgrade, from installing the …
0
votes
1answer
49 views

cURL for webpage login

I want to submit my submissions to this competition automatically from my code. I need to log-in on this page and then submit a file on this page. I'd like to use cURL since it integrates with both of …
2
votes
1answer
44 views

Identifying unique terms from list of character vectors

I have a list of character vectors in R that represents sets of cooccuring words. From this, I would like to extract a character vector capturing all the words that appear in the list of character …
8
votes
14answers
464 views

What programming languages are good for statistics?

I'm doing a bit more statistical analysis on some things lately, and I'm curious if there are any programming languages that are particularly good for this purpose. I know about R, but I'd kind of …
2
votes
3answers
88 views

How do you compare the “similarity” between two dendrograms (in R) ?

I have two dendrograms which I wish to compare to each other in order to find out how "similar" they are. But I don't know of any method to do so (let alone a code to implement it, say, in R). Any …

1 2 3 4 5 46
15 30 50 per page