Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
4answers
302 views

What is the “official” way of creating, structuring, maintaining and updating data codebooks in R, if any?

In the interest of replication I like to keep a codebook with meta data for each data frame. A data codebook is: a written or computerized list that provides a clear and comprehensive description ...
4
votes
5answers
83 views

Quickly remove zero variance variables from a data.frame

I have a large data.frame that was generated by a process outside my control, which may or may not contain variables with zero variance (i.e. all the observations are the same). I would like to build ...
4
votes
2answers
72 views

Merge producing unexpected results in R

I am trying to merge: to_graph <- structure(list(Teacher = c("BS", "BS", "FA" ), Level = structure(c(2L, 1L, 1L), .Label = c("BE", "AE", "ME", "EE"), class = "factor"), Count = c(2L, 25L, 28L)), ...
4
votes
1answer
175 views

R: create a data frame out of a rolling window

Lets say I have a data frame with the following structure: DF <- data.frame(x = 0:4, y = 5:9) > DF x y 1 0 5 2 1 6 3 2 7 4 3 8 5 4 9 what is the most efficient way to turn 'DF' into a data ...
3
votes
2answers
73 views

Most efficient list to data.frame method, when the list is a list of rows

This question covers the case where I have a list of columns, and I wish to turn them into a data.frame. What if I have a list of rows, and I wish to turn them into a data.frame? rowList <- ...
3
votes
4answers
138 views

R reshape, restructure dataframe by chunks

I am trying to reshape a dataframe: Currently it looks like this: ID | Gender |A1 | A2 | A3 | B1 | B2 | B3 ID_1 | m | 3 | 3 | 3 | 2 | 3 | 2 ID_2 | f | 1 | 1 | 1 | 4 | 4 | 4 I ...
3
votes
2answers
103 views

Create a variable capturing the most frequent occurence by group

Define: df1 <-data.frame( id=c(rep(1,3),rep(2,3)), v1=as.character(c("a","b","b",rep("c",3))) ) s.t. > df1 id v1 1 1 a 2 1 b 3 1 b 4 2 c 5 2 c 6 2 c I want to create a third ...
3
votes
2answers
271 views

Working with dataframes in a list: Drop variables, add new ones

Define a list dats with two dataframes, df1 and df2 dats <- list( df1 = data.frame(a=sample(1:3), b = sample(11:13)), df2 = data.frame(a=sample(1:3), b = sample(11:13))) > dats $df1 a b ...
3
votes
3answers
153 views

Split a data frame into overlapping dataframes

I'm trying to write a function that behaves as follows, but it is proving very difficult: DF <- data.frame(x = seq(1,10), y = rep(c('a','b','c','d','e'),2)) > DF x y 1 1 a 2 2 b 3 3 c ...
3
votes
3answers
170 views

Where to put data management rules for complex data validation in ASP.NET MVC?

I am currently working on an ASP.NET MVC2 project. This is the first time I am working on a real MVC web application. The ASP.NET MVC website really helped me to get started really fast, but I still ...
2
votes
3answers
71 views

How to add a counting column based on values in other columns in R

I have a relatively large dataset (16,000+ x ~31), at least it's large enough that I don't want to manipulated it line by line in excel. The data is in this form: block site day X1 X2 1 ...
2
votes
3answers
131 views

Endless function/loop in R: Data Management

I am trying to restructure an enormous dataframe (about 12.000 cases): In the old dataframe one person is one row and has about 250 columns (e.g. Person 1, test A1, testA2, testB, ...)and I want all ...
2
votes
0answers
127 views

Mobile app data management

I have an application that retrieves data from an SQLite database. One view requires a list of names. Another view requires more data about a selected name from view one. How should data be managed? ...
2
votes
2answers
271 views

How do I make doSMP play nicely with plyr?

This code works: library(plyr) x <- data.frame(V= c("X", "Y", "X", "Y", "Z" ), Z = 1:5) ddply(x, .(V), function(df) sum(df$Z),.parallel=FALSE) While this code fails: library(doSMP) workers ...
2
votes
2answers
388 views

Reshape data frame from wide to panel with multiple variables and some time invariant

This is a basic problem in data analysis which Stata deals with in one step. Create a wide data frame with time invariant data (x0) and time varying data for years 2000 and 2005 (x1,x2): d1 <- ...
1
vote
2answers
28 views

Access control for static resources

In my application I sometimes generate a new picture. After reading comments here I decided to store the pictures in the filesystem and the metadata in the database, so now my files are served ...
1
vote
1answer
40 views

tag duplicates by time difference, generate id

ok, I am just starting out with R and somewhat stuck at the moment. I have a dataset with election results, and the only identifier for a person is a string variable with his/her name. Many ...
1
vote
3answers
138 views

iOS data management

I'm writing a simple iOS App to manage Email address, maybe like Contacts. I don't know what is the best way to organize data in iOS and don't know which database that iOS and Xcode support. I just ...
1
vote
1answer
179 views

Working with dataframes in a list: Rename variables

Define: dats <- list( df1 = data.frame(A=sample(1:3), B = sample(11:13)), df2 = data.frame(AA=sample(1:3), BB = sample(11:13))) s.t. > dats $df1 A B 1 2 12 2 3 11 3 1 13 $df2 ...
1
vote
2answers
190 views

Collapse data frame by group using different functions on each variable

Define df<-read.table(textConnection('egg 1 20 a egg 2 30 a jap 3 50 b jap 1 60 b')) s.t. > df V1 V2 V3 V4 1 egg 1 ...
1
vote
3answers
106 views

Editing cell entries in a variable in a data frame inside a list of data frames

Define: > dats <- list( df1 = data.frame(a=sample(1:3), b = as.factor(rep("325.049072M",3))), + df2 = data.frame(a=sample(1:3), b = as.factor(rep("325.049072M",3)))) > dats $df1 a ...
1
vote
2answers
46 views

How to manage application data while the application is running? (frequent IO versus more memory usage)

I have a general question about desktop applications. My friend and I were discussing about how application data should be managed while the application is running. We were arguing over two methods ...
1
vote
1answer
138 views

Storing and managing video files

What approach is considered to be the best to store and manage video files? As databases are used for small textual data, are databases good enough to handle huge amounts of video/audio data? Are ...
1
vote
1answer
64 views

Handle rollbacks for data edits in a multi-user environment?

How to you typically handle roll backs for data edits in a multi-user environment? Do you identify the transaction and build a graph of any subsequent dependent transactions and then roll them all ...
0
votes
2answers
29 views

File Data inside of source code?

I'm working on a class for managing STFS files, and some of the data I need is hundreds of bytes long. I'm wondering if there's anything wrong with creating a byte array with that information in the ...
0
votes
2answers
162 views

Reading plist file. iOS Programming

I have this code and can't figure out what I'm doing wrong. As you can see in the code below I have a plist file called shifts.plist which is in my supporting files folder. Here is my plist structure. ...
0
votes
4answers
92 views

Is it OK if I used plist? iOS

I need to save about 14 NSDictionaries to a plist. Each Dictionary is going to have 5 item. 1- name of the place 2- starting time 3- finishing time 4- Total 5- Additional notes I've been reading and ...
0
votes
1answer
73 views

Dealing with Singleton class instance

I created a singleton class in PHP: <?php class DataManager { private static $dm; // The singleton method public static function singleton() { if (!isset(self::$dm)) { ...
0
votes
2answers
171 views

What is the best way to manage metadata in R?

In analyzing data the metadata about variables is extremely important. How do you manage this information in R? For example, is there a way to specify a label that will be printed instead of the ...
0
votes
2answers
122 views

VB.NET: Properly manage data from XML

Good morning all. I'm relatively new to the Visual Basic realm (although a traditional web based script developer), i've come to ask you a question. I am reading data from an XML file. This local ...
0
votes
1answer
141 views

How to restore a navigationcontroller path when relaunching the app?

I am building an app based on a navigation controller. I would like that the user has the ability when he relaunches the app to see the last screen he saw when he quit the app. It's exactly like in ...
0
votes
3answers
235 views

best way to store data locally and update from web from time to time?

I have created an app which displays information in a organized manner about cultural places. The information is subject to changes, so I want it to be downloaded from the web. But not everytime. Only ...
0
votes
1answer
195 views

Preserving data while expanding/merging Core Data models

Two separate but related questions regarding the use of Core Data: 1) I add an entity/attribute/relationship to my Core Data model in Xcode. Is there a way to have it recognize the information in ...
0
votes
1answer
69 views

Assets Management in a clustered environment

I have a content management system running on a web server, that among others allows the user to upload assets like images, files, etc to the server. The problem i have is that there will be 2 ...