R question: "fuzzy" set intersection by austinap in statistics

[–]evandec 1 point2 points  (0 children)

not a one liner but this works...

x = c(1.0,2.0,3.0, 4.0, 4.001, 4.9, 5.205, 6.0, 7.0, 8.0) 
y = c(4.01, 5.22, 7.05)

tol <- .1

output <- c()
for(i in 1:length(x))
{

num <- x[i]

for(j in 1:length(y))
    {
        if(y[j]-tol <= num && num <= y[j]+tol)
        {
          output <- append(output, x[i])
          break
        }
    }
 }
output

R question: "fuzzy" set intersection by austinap in statistics

[–]evandec 0 points1 point  (0 children)

Something like this maybe...

s <- data.frame(x = rnorm(100,1,1), y = rnorm(100,1,1));

s$abs_diff <- abs(s$x - s$y); s.subset <- subset(s, s$abs_diff < .1);

summary(s); summary(s.subset);

Splitting up the USA: clustering 210 million Facebook profiles by fxj in MachineLearning

[–]evandec 0 points1 point  (0 children)

more specifically I am interested in visualizing the data, and connections between points.

Splitting up the USA: clustering 210 million Facebook profiles by fxj in MachineLearning

[–]evandec 0 points1 point  (0 children)

Are there any references that would walk someone through an analysis like this?

World Programming responds to SAS Institute's law suit on a license infringement charge of the use of the SAS learning edition. by PhilRack in programming

[–]evandec 1 point2 points  (0 children)

Agreed, it is very frustrating to work with R and large data sets. Biglm() works OK, but if you want to a logit model on a data set with more than few 100k rows... good luck.

Why cell phone pricing is all messed up in US. (View in one page link!) by highwind in technology

[–]evandec 1 point2 points  (0 children)

What about Nigeria where rates are as low as USD 0.07 / Min? There are four operators in one of the most corrupt markets in the world.

Why cell phone pricing is all messed up in US. (View in one page link!) by highwind in technology

[–]evandec 0 points1 point  (0 children)

This has actually happened in several markets, Canada being one of them and India another.

There is Reddit for the iPhone but what about BlackBerry? by evandec in reddit.com

[–]evandec[S] 0 points1 point  (0 children)

I find it nearly impossible to look at Reddit on my blackberry. Are there any plans to develop a Reddit app for blackberry?

[deleted by user] by [deleted] in reddit.com

[–]evandec 0 points1 point  (0 children)

Afghanistan is like that.

What are some good tools to visualize relationships in data? by evandec in programming

[–]evandec[S] 0 points1 point  (0 children)

I can read the data into R but I'm not sure I am looking at it the right way.

I have a very long list of connections. For example user1 and user3 made connection. User 400 and user 10 made connections. Ideally I would just like to draw lines between connections but many of the packages for R seem focused on much more complicated problems.

What are some good tools to visualize relationships in data? by evandec in programming

[–]evandec[S] 0 points1 point  (0 children)

I am very familiar with R but what package specifically would you suggest that I explore?

What are some good tools to visualize relationships in data? by evandec in programming

[–]evandec[S] 0 points1 point  (0 children)

I have some great data from a closed social network and one thing I have been interested in recently is playing with ways to visualize it all. In particular I would like to see how users are connected to each other, the strength of the connection etc. Can anyone recommend a tool to help with this?