Tagged Questions
1
vote
1answer
30 views
R: merge data frames for cohen's kappa
I'm trying to analyze some date using R but I'm not very familiar with R (yet) and therefore I'm totally stuck.
What I try to do is manipulate my input data so I can use it to calculate Cohen's ...
0
votes
1answer
28 views
Transform data from cumulative for year to date to daily
I am trying to convert data that show sales as cumulative total sales for the year to date. I want to show sales as they occur by day, not the cumulative figure.
Here is an example of the data:
...
1
vote
4answers
72 views
Remove lines based on number of characters.
I am wondering how I can remove lines from a dataset that contain more than a certain number of characters, based on the sum of two rows.
For example, in the following data:
2 rs121065 0 ...
-1
votes
2answers
39 views
Plot data from several large data files in ggplot
I have several data files (numeric) with around 150000 rows and 25 columns. Before I was using gnuplot (where script lines are proportional plot objects) to to plot the data but as I have to do now ...
0
votes
1answer
62 views
filtering data in R (complex)
I have a dataset with 7 million records.
I need to filter the data to only show about 9000 of these.
The first field dmg is effectively the primary key and take the format 1-Apr-123456. There are ...
1
vote
1answer
45 views
R: How to convert from lowercase to upper case all values in all character variables in dataframe
I have a mixed dataframe of character and numeric variables. I want to convert all the lower-case characters in the dataframe to uppercase. Is there any way to do this in one shot without doing it ...
2
votes
2answers
42 views
Using R to count a run since last event in panel data
All,
I'm hoping you can help me with creating a variable that will count a "run" since a last event of another variable, using the R programming language. The data set with which I'm working is ...
0
votes
2answers
57 views
Read text data into R
I have a list of items in a single vector itemlist file identified by a single integer. I also have a meta-data on each item. In this case the item is a book on amazon.com, and the meta data is on ...
-1
votes
0answers
37 views
Procrustes Analysis of 3d point cloud without defined landmarks [closed]
I am working with multiple 3d point clouds and would like to be able to compare their shapes using something like a procrustes analysis. Instead of defining landmarks to compare however, I was hoping ...
0
votes
0answers
19 views
The “formula” argument in R elrm() function did not read a specific data
There was something wrong with the argument "tryout." It kept showing me that "tryout" was not found. What could be wrong with the code?
data <- data.frame(event=c(0,1), x =c(0,1), tryout <- ...
0
votes
0answers
23 views
How can I process larger amount of data with Mclust pkg using R
I was running Mclust to process 85mb data files. It ends because there isn't enough memory it goes all the way up to 12.26gb and then fails. I have access to a large 16gb of ram but not sure what's ...
0
votes
1answer
29 views
How to make a new Column based on conditions
Hi I have 2 columns in my table: ROM and Treatment
ROM is filled with values between -20 and 20 and Treatment has 0 or 1.
I need to find a way to get all the ROM values that are in the control group ...
1
vote
1answer
41 views
Best format to store incremental data in regularly using R
I have a database that is used to store transactional records, these records are created and another process picks them up and then removes them. Occaisonaly this process breaks down and the number ...
-1
votes
0answers
22 views
How to change the size of clusters for Mclust library in R
I'm using the basic Mclust() function and I'm trying to see if there's a way for me to change to number of clusters it creates for the data. Maybe increase error or something like that.
1
vote
1answer
55 views
Finding a boundary in a density plot
I am very new to machine learning so I am open to suggestions as well. I read something called minimax risk today and I was wondering if this is possible in my case.
I have two datasets and am ...
1
vote
1answer
25 views
Treatment randomization
I have a matrix of 8 rows and 12 columns, and randomly distributed 10 different treatments with 9 replicates and a final treatment only with 6 replicates in the matrix. The code might be redundant, ...
0
votes
0answers
36 views
Analyzing a large amount of graphs procedurally
I have a large amount of social network graphs (in .graphml format) that I want to analyze using R and a package such as igraph. However, the computational task is too large to do manually. I am ...
0
votes
0answers
59 views
Data science - where to start when exploring database? [closed]
I'm new to data science and my only experience with it are the threads I've read online and some reading I've done on the R programming language. The data i want to explore is spread across multiple ...
1
vote
1answer
32 views
Read multiples of same columns in a fixed width file
Consider the following few lines from a Stata .dct file which defines for Stata how to read this fixed width ASCII file (can be decompressed with any ZIP software on any platform):
start ...
1
vote
1answer
54 views
Doing several panel data efficiently in R
I am trying to do several pooling OLS regressions on a "changing" panel data set. The Gasoline data in the plm package will suit well as an example
library(plm)
data("Gasoline", package = "plm")
...
3
votes
3answers
84 views
How to generate sample data with exact moments
How to generate exact data?
In R we have the option to use rnorm to sample from a population with certain characteristics (say, mean=0, sd=1), but how do we get data with exactly mean=0, sd=1?
This ...
0
votes
2answers
75 views
Grouping data in R to perform a function
Here is an example of my data:
id score
1 82 0.50000
2 82 0.39286
3 82 0.56250
4 328 0.50000
5 328 0.67647
6 328 0.93750
7 ...
1
vote
2answers
48 views
Removing items from a dataset that have too few mentions
I am beginning R user and I have a question about a problem I encountered:
Very large dataset (almost 800k rows)
This dataset lists all contributions to a politicians in the 90s in the US
...
0
votes
1answer
45 views
How to create an ADBUDG Economics Marketing Model with R
So I am trying to recreate this blog post, but the author does not give very detailed steps for use with R.
The post is located here: ...
0
votes
1answer
37 views
event log tabulation table
So I am not sure which if any tabulation function to use within R for my problem. Basically I have a set of Data (an event log) with various user-ids as the reference and then specific products for ...
0
votes
0answers
67 views
Three-factor ANOVA in R (2 within-subs, 1 between)
I'm working on a project in R that will require a three-factor ANOVA, two of which are within-subjects and one of which is within-subjects. I've found quite a bit on the actual code for this, which ...
1
vote
2answers
65 views
How to build a data frame from several xls files?
I am trying to build a data frame from several xls tables I downloaded:
states <- c("A","B","C","D")
for(i in states){
...
-2
votes
1answer
66 views
In R, How can I do this faster and more efficiently?
make item random data
test <- matrix(runif(100, 0, 1), nrow = 20)
nr <- nrow(test)
mat = matrix(sapply(test, rbinom, n = 1, size = 1), nrow = nr)
make name random data
testvec <- cbind( ...
1
vote
1answer
57 views
Filter values in data frame
Basically, I have a gene dataset in which the rows are genes and columns are sequential time points of protein folding. I need a function to filter genes of a certain threshold value from others ...
0
votes
1answer
82 views
Population pyramid w projection in R
I would like to create population pyramids in R. I know that there are many examples here on StackOverflow, but I would like to create one that also include population projections, i.e. with bars for ...
1
vote
1answer
26 views
R character conversion
From an import, I have a date being read in as a factor:
user$registrationDate[1]
[1] "2004-07-23 14:19:32"
15551 Levels: " "1" "2004-07-23 14:19:32" "2004-07-25 03:29:18" "2004-07-25 08:35:20" ... ...
7
votes
2answers
112 views
Technique for finding bad data in read.csv in R
I am reading in a file of data that looks like this:
userId, ...
5
votes
1answer
107 views
Updated world map for R “maps” package?
library(maps)
1> map.where(database="world",29.392089,53.592505)
[1] "USSR"
Hello?!?
does anyone know how I can get an updated world map database to drive this function in the maps package? I ...
1
vote
1answer
54 views
Why is R prefixing my imported dataset names with an X [duplicate]
[to the moderator: if you say it's a duplicate at least show the duplicate because I can't find it. I wonder if you really understand my question, and the perfect answer to it:) ]
I can't tell why ...
0
votes
1answer
33 views
Best way of storing data in 100 objects for later retrieval?
When doing sequencing, I normally apply TraMineR's seqdef function on a dataset to generate a single sequence object:
sequence_object <- seqdef(data)
However, let's say I want to loop through a ...
1
vote
1answer
54 views
Best way of storing 100 matrices in R?
I'm writing a function that generates 100 matrices. Once I have this, I need to loop through the first superdiagonal on each matrix and extract the values. These values are supposed to go into a ...
2
votes
3answers
77 views
Looping through diagonal+1 of a matrix
I need to loop through the diagonal+1 (i.e. the values 1 column to the right of the diagonal) and write the value to a column in a dataframe:
write.csv(data.frame(matrix[1,2], matrix[2,3], ...
1
vote
1answer
61 views
Looping across 10 columns at a time in R
I have a dataframe with 1000 columns. I am trying to loop over 10 columns at a time and use the seqdef() function from the TraMineR package to do sequence alignment across the data in those columns. ...
0
votes
0answers
47 views
Rebinning Data Cube
I have a cube of data that is too highly binned in "x" and "y" direction. I want to decrease the binsize taking into account that the cells have different weighting.
Example:
# These are the centers ...
0
votes
2answers
49 views
How to drop columns by name pattern in R?
I have this dataframe:
state county city region mmatrix X1 X2 X3 A1 A2 A3 B1 B2 B3 C1 C2 C3
1 1 1 1 111010 1 0 0 2 20 ...
1
vote
1answer
44 views
Loading data from a program
I am trying to access a set of data which is part of a program. The result is the statement that the data does not exist. The code I am using follows:
library(survival)
Loading required package: ...
2
votes
1answer
155 views
How to efficiently extrapolate missing data for multiple variables
I have panel data and numerous variables are missing observations before certain years. The years vary across variables. What is an efficient way to extrapolate for missing data points across multiple ...
1
vote
0answers
87 views
Select appropriate columns from table based on multiple input
I built a small app in R's shiny package that displays some columns from selected dataframe based on the input IDs/Names. My dummy data looks like this (code below):
ID1 ID2 ID3 ID4 Client Amount
...
3
votes
1answer
70 views
Plotting error ellipses in R
I'm trying to plot a U-Pb isochron, which is basically an xy plot, with an error ellipses around each datapoint to indicate the precision of that data point. Here's an example of what I'm trying to ...
1
vote
1answer
110 views
Is R a resource-hungry language? [closed]
I've heard from many people that R is built for processing petabytes of data; however, on the other hand, I'm hearing very often as well that if you want to process for example 8 GB of data, you'd ...
0
votes
1answer
64 views
Adding a decision column to dataset using R
I have a data set "activityData" as follows
subject activity
1 walk
2 lay
3 sit
4 stand
5 run
6 walk
7 sit
8 ...
1
vote
2answers
159 views
R Text mining - how to change texts in R data frame column into several columns with word frequencies?
I have a data frame with 4 columns. Column 1 consists of ID's, column 2 consists of texts (about 100 words each), column 3 and 4 consist labels.
Now I would like to retrieve word frequencies (of the ...
0
votes
2answers
65 views
R: Subsetting Data based on whether one multiple variables are/aren't included in list
I am trying to make two subsets my data if any one of 5 columns (5-10) contains a factor within my list (keep.list) and one where none of the cols contain anything from the keep.list. Here's where I ...
0
votes
1answer
33 views
R: Organization of data with metadata
I have a dataframe that contains two columns X-data and Y-data.
This represents some experimental data.
Now I have a lot of additional information that I want to associate with this data, such as ...
4
votes
2answers
105 views
Quotation issues reading data into R
I have some data from and I am trying to load it into R. It is in .csv files and I can view the data in both Excel and OpenOffice. (If you are curious, it is the 2011 poll results data from ...
