1
vote
2answers
24 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 …
6
votes
2answers
70 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 …
1
vote
2answers
110 views
In R, what is the difference between these two?
0.9 == 1-0.1 >>> TRUE
0.9 == 1.1-0.2 >>> FALSE
4
votes
1answer
64 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 …
1
vote
1answer
49 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 …
1
vote
3answers
62 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 …
1
vote
1answer
41 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
458 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
86 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 …
5
votes
2answers
97 views
Merge several data.frames into one data.frame with a loop
I am trying to merge several data.frames into one data.frame. Since I have a whole list of files I am trying to do it with a loop structure.
So far the loop approach works fine. However, it looks …
4
votes
3answers
166 views
Information Dashboards in R with ggplot2
I'm looking to create a static dashboard viewable in a web browser. And I'd like to create something like what Stephen Few does in his book Information Dashboard Design. (see example at bottom)
…
1
vote
2answers
89 views
Plot multiple functions in R
I previously asked this question which was useful in plotting a function. I want to try and plot twenty functions on the same axes to illustrate how a function varies between two ranges. I have …
62
votes
11answers
2k views
What statistics should a programmer (or computer scientist) know?
I'm a programmer with a decent background in math and computer science. I've studied computability, graph theory, linear algebra, abstract algebra, algorithms, and a little probability and statistics …
3
votes
5answers
133 views
In R, how to count TRUE values in a logical vector
In R, what is the most efficient/idiomatic way to count the number of TRUE values in a logical vector? I can think of two ways:
> z<-sample(c(TRUE,FALSE),1000,rep=TRUE)
> sum(z)
[1] 498
> …
3
votes
5answers
95 views
Ways to read only select columns from a file into R? (A happy medium between `read.table` and `scan`?)
I have some very big delimited data files and I want to process only certain columns in R without taking the time and memory to create a data.frame for the whole file.
The only options I know of are …
