Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
75k views

How do I remove objects from an Array in java?

Given an Array of n Objects, let's say is an Array of Strings, and it has the following values: foo[0]="a"; foo[1]="cc"; foo[2]="a"; foo[3]="dd"; What do I have to do to delete/remove all the ...
5
votes
2answers
964 views

remove row with nan value

let's say, for example, i have this data: data <- c(1,2,3,4,5,6,NaN,5,9,NaN,23,9) attr(data,"dim") <- c(6,2) data [,1] [,2] [1,] 1 NaN [2,] 2 5 [3,] 3 9 [4,] 4 NaN ...
5
votes
2answers
151 views

Complicated MySQL Data Structure/Manipulation Problem

First off, I apologize for the length. This is kind of complicated (at least for me). Background on the database: I have a products, variables, and prices table. "Products" are the main information ...
5
votes
6answers
4k views

How do you handle the fetchxml result data?

I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used an XDocument with ...
4
votes
4answers
122 views

Given an R dataframe with column A, how do I create two new columns containing all ordered combinations of A

I have a data.frame with one id column (x below), and a number of variables (y1,y2 below). x y1 y2 1 1 43 55 2 2 51 53 [...] What I would like to generate from this is a dataframe where the ...
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 ...
4
votes
3answers
684 views

Most meaningful way to compare multiple time series

I need to write a program that performs arithmetic (+-*/) on multiples time series of different date range (mostly from 2007-2009) and frequency (weekly, monthly, yearly...). I came up with - find ...
3
votes
2answers
104 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
2answers
64 views

Processing and combining two large files

I need to read in two large files (over 125 MB). Each file contains records that have similar data. I need to find the records that are in both of them and then if the fields of the records dont ...
3
votes
4answers
272 views

loop to create a new variable based on other cases in R (very basic)

I have a dataframe with three variables: ID, group, and nominated_ID. I want to know the group that nominated_ID belongs in. I'm imagining that for each case, we take nominated_ID, find the case ...
3
votes
3answers
154 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
573 views

Data recognition, parsing, filtering, and transformation — GUI?

Looking for a non-cloud based open source app for doing data transformation; though for a killer (and I mean killer) app just built for data transformations, I might be willing to spend up to $1000. ...
3
votes
6answers
343 views

Vim search and replace, adding a constant

I know this is a long shot, but I have a huge text file and I need to add a given number to other numbers matching some criteria. Eg. identifying text 1.1200 identifying text 1.1400 and I'd like ...
3
votes
2answers
254 views

Restructure Data in R

I am just starting to get beyond the basics in R and have come to a point where I need some help. I want to restructure some data. Here is what a sample dataframe may look like: ID Sex Res Contact ...
3
votes
4answers
2k views

Removing elements with Array.map in JavaScript

I would like to filter an array of items by using the map() function. Here is a code snippet: var filteredItems = items.map(function(item) { if( ...some condition... ) { return item; ...
2
votes
2answers
93 views

Break square matrix into pairs

I have a large square matrix 12128 x 12128. Example A B C D E A 0.5 0.4 0.1 0.02 0.4 B 0.1 0.3 0.07 0.03 0.9 C 0.8 0.04 0.5 0.4 0.4 D 3.4 5.6 9.5 2 ...
2
votes
2answers
62 views

Speeding up reshaping person to period-format dataframe in R

I have a dataset with longitudinal data in a person-oriented format, as such: pid varA_1 varB_1 varA_2 varB_2 varA_3 varB_3 ... 1 1 1 0 3 2 1 2 0 1 0 2 ...
2
votes
2answers
161 views

Creating new column in R dataframe based on existing columns and grouping

I have a dataframe df of soccer team information by game (MATCHID) with these initial values TEAMID Venue LEAGUEPOS MATCHID WHU A 5 1 COV H 12 1 EVE H ...
2
votes
3answers
225 views

Removing rows in dataset goes wrong

I have the following dataset: text <- c(1:13) numbers <- c(1,1,1,1,1,1,1,1,1,1,1,1,1) test <- data.frame( text =text, is.numeric.feature = numbers) text is.numeric.feature 1 ...
2
votes
2answers
389 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 <- ...
2
votes
1answer
84 views

Pythonistas, how do I move data from top to bottom to left to right in MySQL (think multiple values for each ID)?

Task at hand is to move data as shown in table 1 to that of table 2. Table (1) ID Val -- --- 1 a 1 b 1 c 2 k 3 l 3 m 3 n Val columns depend on the number of unique values for each ...
2
votes
4answers
76 views

Artificially Add a Record To MySQL Results

Is there any way to slip in a record to the top of a result set in MySQL? For instance, if my results are: 1 | a 2 | b 3 | c etc I want to be able to get: Select | Select 1 | a 2 | b 3 ...
1
vote
2answers
27 views

Creating a matrix of future values for a time series

I have a time series in R. I want to construct a matrix, where each row is the current observation, and each column represent the future values of that series, starting from that point. eg: x <- ...
1
vote
1answer
752 views

jquery jqgrid Show message when an edit row is complete

I am following this tutorial here http://www.trirand.com/blog/jqgrid/jqgrid.html in LiveDataManipulation->EditRow My grid receive data from script a.php. After the user can modify this data by the ...
1
vote
2answers
143 views

Replace accents in string vector with Latex code

Define: df <- data.frame(name=c("México","Michoacán"),dat=c(1,2)) s.t. > df name dat 1 México 1 2 Michoacán 2 When I print this table to a .tex file using xtable the ...
1
vote
1answer
49 views

changing variable values into new variables in r

I have a data set with about 600 animals with this structure: anim <- c(1,1,1,1,1,2,2,2,2) point <- c(1,2,3,4,6,3,4,5,6) temp <- c(38.8,38.5,33.2,33.5,37.2,36.2,36.5,36.0,37.8) mydf <- ...
1
vote
1answer
181 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
4answers
112 views

Turning a column into rows

I have , for example, this data Rows <- c(1,1,1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4,4, 5,5,5,5,5,5,5,5,5, 6,6,6,6,6,6,6,6,6, ...
1
vote
0answers
36 views

App/GUI for matching up list items?

I am migrating data from one database schema to another. I have to match up fields from the old to the new. I'd like to have a simple app or GUI interface where I have a list of the tables and ...
1
vote
0answers
28 views

What programs or techniques do you use for reading/manipulating files with fixed length records?

When mocking up test data for our product, or debugging customer data, it would be nice to have an app that is able to highlight columns or groups of columns as fields, or even to have the editor be ...
0
votes
3answers
40 views

Merging boolean results from different rows into single row

I have a join query which returns multiple rows ID SearchID Bool1 Bool2 Bool2 1 1 1 1 0 1 1 0 0 0 5 1 1 0 ...
0
votes
0answers
47 views

C++, Data Manipulation [closed]

I have basically developed data manipulation software in C++ using the arcane turbo c++ compiler. I need to upgrade my programs to a more modern platform and write more advanced programs. I have some ...
0
votes
3answers
44 views

Matlab Trimming at Bounds

I have a matrix A: NaN NaN NaN NaN NaN NaN NaN 10 1 8 7 2 5 6 2 3 49 NaN NaN NaN NaN NaN NaN I was wondering if there was a way to detect when the NaNs first turn to numbers and turn the 1st 2 ...
0
votes
1answer
55 views

recoding variables

I want to recoded a variable so that, for example, we can get transforme this vector in the following way: > a <- c(0,0,0,0,0,1,1,1,1,1) # original > b <- c(-5,-4,-3,-2,-1,0,1,2,3,4) # ...
0
votes
0answers
21 views

Quick Computing & Pairwise matching

I have a list of 18000 entries. I want to check if each of these entries exists as a pair with other entries in the same list against a table in remote database. For example; I have a list like ABCD ...
0
votes
1answer
105 views

MVC3 - POST/Submit/Save a Model with custom DataType

I have created a custom DataType("Days") and have been able to create a partial view "Days.cshtml" which renders a select list just fine. I am able to populate the select list from the form just ...
0
votes
0answers
57 views

Controller GridAction getting the record which has the closest/most recent date to today from many records which match a certain Id

From the looks of the similar questions I can see it would be along the lines of getting a list of all records which match the core Id(parent) then having each record(child) check another ...
0
votes
0answers
177 views

mysql UPDATE,INSERT,DELETE from servlet does not execute but returns no errors!

I have been on this for three days and cannot find a solution. I have a Android app -> Java Servlet -> Tomcat 7 container -> mySql 5.5 db architecture. OS: Windows 7 When I ...
0
votes
1answer
127 views

Simple data-manipulation in R

@Aniko points out that one way to view my problem is that I need to find the connected components of a graph, where the vertices are called groups and, variables group and nominated_group indicate an ...
0
votes
4answers
343 views

Reshape error - invalid factor

I am somewhat new to R and I have run into a point where I need some help. I figure the reshape package can accomplish what I need to do. Here is the structure of the original data frame: > ...
0
votes
2answers
150 views

What would the best technology/language choice be for converting MARK IV data manipulation programs?

My office relies on dozens of old MARK IV programs on a mainframe to pull down and manipulate data from a DB2 database into mainframe files (which eventually turn into excel spreadsheets at the ...
-1
votes
4answers
192 views

How to rotate excel data

This is a general question that just popped into my head that I have always wondered. There have been several times when I've needed to rotate data in Excel, for example: Starting with: | A | ...