Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
10answers
7k views

best way to pick a random subset from a collection?

I have a set of objects in a Vector from which I'd like to select a random subset (e.g. 100 items coming back; pick 5 randomly). In my first (very hasty) pass I did an extremely simple and perhaps ...
8
votes
4answers
435 views

R - subset a dataframe based on column entry (or rank)

I have a data.frame as simple as this one: id group idu value 1 1 1_1 34 2 1 2_1 23 3 1 3_1 67 4 2 4_2 6 5 2 5_2 24 6 2 6_2 45 1 3 1_3 34 2 3 2_3 67 3 ...
8
votes
3answers
227 views

Data structure for querying whether a given subset exists in a collection of sets

I'm trying to build a data structure for a word game solver. I need to store about 150,000 sets of the form {A, A, D, E, I, L, P, T, V, Y}. (They are normalized English words, i.e. characters sorted. ...
7
votes
3answers
164 views

Efficiently find all sets S from a collection of sets C that are contained in a set D

I am starting with a collection C of target sets. Each set contains words (or strings without spaces). As I iterate over sentences, I can consider the sentence as an observed set of words D. My ...
7
votes
4answers
108 views

PHP order array by subset

Ok, so I have two arrays. One is a larger bit of data: Array ( [12] => blah [36] => foo [58] => blah [60] => blah [72] => blah [90] => bar ) The other is ...
7
votes
2answers
547 views

how do I grep in R?

I would like to choose rows based on the subsets of their names, for example If I have the following data: data <- structure(c(91, 92, 108, 104, 87, 91, 91, 97, 81, 98), .Names = c("fee-", "fi", ...
6
votes
2answers
86 views

Selecting last n items in a time series

I want to select the last n items of a time series. I can use the [ operator, but I lose the time series attributes of the data: data <- ts(1:10, frequency = 4, start = c(1959, 2)) ...
6
votes
1answer
199 views

How to subset matrix to one column, maintain matrix data type, maintain row/column names?

When I subset a matrix to a single column, the result is of class numeric, not matrix (i.e. myMatrix[ , 5 ] to subset to the fifth column). Is there a compact way to subset to a single column, ...
6
votes
5answers
1k views

minimum difference between sum of two subsets

Folks, came across a problem... found this intersting... am modifying it a little bit just tu pep it up. Given a set of integers (range 0-500), find the minimum difference between the sum of two ...
6
votes
3answers
539 views

Subsetting data in python

I want to use the equivalent of the subset command in R for some python code I am writing. Here is my data: col1 col2 col3 col4 col5 100002 2006 1.1 0.01 6352 100002 2006 1.2 ...
6
votes
3answers
190 views

Algorithm: Removing as few elements as possible from a set in order to enforce no subsets

I got a problem which I do not know how to solve: I have a set of sets A = {A_1, A_2, ..., A_n} and I have a set B. The target now is to remove as few elements as possible from B (creating B'), such ...
6
votes
5answers
570 views

Finding the product of each of the (n-1) subsets of a given array

I'm sorry for deleting the original question, here it is: We have a bag or an array of n integers, we need to find the product of each of the (n-1) subsets. e.g: S = {1, 0, 3, 6} ps[1] = 0*3*6 = 0; ...
6
votes
4answers
412 views

Collection of sets containing no sets which are a subset of another in the collection

I am looking for an abstract data structure which represents a collection of sets such that no set in the collection is a subset of another set in the collection. This means that on insert the ...
5
votes
2answers
94 views

subset() of a vector in R

I've written the following function based on subset(), which I find handy: ss <- function (x, subset, ...) { r <- eval(substitute(subset), data.frame(.=x), parent.frame()) if ...
5
votes
3answers
129 views

Generate all “unique” subsets of a set (not a powerset)

Let's say we have a Set S which contains a few subsets: - [a,b,c] - [a,b] - [c] - [d,e,f] - [d,f] - [e] Let's also say that S contains six unique elements: a, b, c, d, e and f. How can we find all ...
5
votes
1answer
97 views

selecting columns specified by a random vector in R

I have a large matrix from which I would like to randomly extract a smaller matrix. (I want to do this 1000 times, so ultimately it will be in a for loop.) Say for example that I have this 9x9 ...
5
votes
3answers
145 views

Efficient And Conditional Tuples or Subsets

Stepping back from the following question : Selecting with Cases I need to generate a random Set (1 000 000 items would be enough) Subsets[Flatten[ParallelTable[{i, j}, {i, 1, 96}, {j, 1, 4}], 1], ...
5
votes
2answers
95 views

How do I use Linq to find the elements of a list that are not present in another list?

I have 2 List of String variables: List<string> stringList1 List<string> stringList2 where stringList2 is a subset of stringList1 now I want all the elements on stringList1 that ...
5
votes
2answers
959 views

Subsets in Prolog

I'm looking for a predicate that works as this: ?- subset([1,2,3], X). X = [] ; X = [1] ; X = [2] ; X = [3] ; X = [1, 2] ; X = [1, 2, 3] ; X = [2, 3] ; ... I've seen some subset implementations, ...
5
votes
4answers
612 views

R: Are there any alternatives to loops for subsetting from an optimization standpoint?

A recurring analysis paradigm I encounter in my research is the need to subset based on all different group id values, performing statistical analysis on each group in turn, and putting the results in ...
5
votes
5answers
1k views

Enumerate through a subset of a Collection in C#?

Is there a good way to enumerate through only a subset of a Collection in C#? That is, I have a collection of a large number of objects (say, 1000), but I'd like to enumerate through only elements ...
4
votes
6answers
70 views

Maintaining a set of smallest subsets

Here are the operations that I'd like to perform on a hypothetical collection data structure that holds sets as its elements: Insert a set into the data structure, but: (1) if the new set is a ...
4
votes
3answers
120 views

R: sum negative values in a vector only if they are preceded by positive values

I have a vector that looks like this: mass<-c(-2, -6, -79, 31, -28, 198, 132, 0, 262, -187, -475, 701, 926) I need to sum the following subset of values from this vector: all positive values; ...
4
votes
2answers
348 views

Find all possible subset combos in an array?

I need to get all possible subsets of an array with a minimum of 2 items and an unknown maximum. Anyone that can help me out a bit? Say I have this... [1,2,3] ...how do I get this? [ [1,2] ...
4
votes
4answers
1k views

Find the maximum value of a matrix subset in MATLAB while preserving the indices of the full matrix

Currently, I'm able to find the max value of a matrix C and its index with the following code: [max_C, imax] = max(C(:)); [ypeak, xpeak] = ind2sub(size(C),imax(1)); Let's call a subset of the ...
4
votes
1answer
317 views

Fastest way for a random unique subset of C++ tr1 unordered_set

This question is related to this one, and more precisely to this answer to it. Here goes: I have a C++/TR1 unordered_set U of unsigned ints (rough cardinality 100-50000, rough value range 0 to 10^6). ...
4
votes
3answers
800 views

Filtering a data frame in R

let's suppose that I have data frame like expr_value cell_type 1 5.345618 bj fibroblast 2 5.195871 bj fibroblast 3 5.247274 bj fibroblast 4 5.929771 hesc 5 5.873096 ...
4
votes
6answers
653 views

Get a random subset from a set in F#

I am trying to think of an elegant way of getting a random subset from a set in F# Any thoughts on this? Perhaps this would work: say we have a set of 2x elements and we need to pick a subset of y ...
4
votes
2answers
1k views

Check whether an array is a subset of another

How can I easily check to see whether one ArrayList object is contained as a subset of another?
4
votes
6answers
582 views

Finding sets that have specific subsets

I am a graduate student of physics and I am working on writing some code to sort several hundred gigabytes of data and return slices of that data when I ask for it. Here is the trick, I know of no ...
3
votes
2answers
31 views

Subset a factor by NA levels

I have a factor in R, with an NA level. set.seed(1) x <- sample(c(1, 2, NA), 25, replace=TRUE) x <- factor(x, exclude = NULL) > x [1] 1 2 2 <NA> 1 <NA> <NA> ...
3
votes
2answers
66 views

Python 3 — [s for s in subsets(S)] and yield

This is some code that I found on the internet and it doesn't have much explanation. I am just curious to how it works. I don't fully understand the yield and the [s for s in subsets(S)] part. Any ...
3
votes
2answers
64 views

subsetting dataframe in R using two criteria, one of them is regular expression

I have a dataset something like this: col_a col_b col_c 1 abc_boy 1 2 abc_boy 2 1 abc_girl 1 2 abc_girl 2 I need to pick up the first row only based on col_b and col_c, and ...
3
votes
1answer
110 views

Generate a powerset without a stack in Erlang

Note: This is a sequel to my previous question about powersets. I have got a nice Ruby solution to my previous question about generating a powerset of a set without a need to keep a stack: class ...
3
votes
3answers
148 views

How to plot a subset of a data frame in R?

Is there a simple way to do this in R: plot(var1,var2, for all observations in the data frame where var3 < 155) It is possible by creating a new data newdata <- data[which( data$var3 < ...
3
votes
4answers
120 views

Remove all the subsets in a list of sets

I have a list of set elements. Example: '([0 1 2][1 2 3] [4 5 6] [5 6 7] [0 1 2 3] [4 5 6 7]) I want to remove the subsets -- [0 1 2] [1 2 3] [4 5 6] [5 6 7] -- and the final answer should be '([0 ...
3
votes
2answers
136 views

Subset of rows containing NA values in a chosen column of a data frame

We have a data frame from a csv-file. The data frame DF has columns that contain observed values and a column (VaR2) that contains the date at which a measurement has been taken. If the date was not ...
3
votes
4answers
106 views

Trying to use user-defined function to populate new column in dataframe. What is going wrong?

Super short version: I'm trying to use a user-defined function to populate a new column in a dataframe with the command: TestDF$ELN<-EmployeeLocationNumber(TestDF$Location) However, when I run ...
3
votes
1answer
112 views

Rolling apply to subset of a vector

I want to apply a function to progressive subsets of a vector in R. I have looked at what i could find, and the apply and friends aren't quite there, and rollapply does not work on straight vectors, ...
3
votes
1answer
121 views

R xts object subseting xts object with multiple days of intraday data for certain hours

Is there a way in xts object to do the same as below but for xts object with multiple days of intraday data? The below works like a clock but for one day of data. If I pass xts from 22nd to 26th it ...
3
votes
1answer
88 views

Help on subsetting a dataframe

I am using %in% for subsetting and I came across a strange result. > my.data[my.data$V3 %in% seq(200,210,.01),] V1 V2 V3 V4 V5 V6 V7 56 470 ...
3
votes
1answer
143 views

R: how to subset a data.frame in a list and return data.frame?

When subsetting a data.frame inside of a list, I get vectors instead of a data.frames (see the example below). How to avoid this and get a data.frames? l <- list(data.frame(a=c(1,2,3)), ...
3
votes
4answers
279 views

R - multiply various subsets of a data frame by different vectors

I would like to multiply several columns in my data frame by a vector of values. The specific vector of values changes depending on the value in another column. --EDIT-- What if I make the data set ...
3
votes
5answers
155 views

How do I create component (subset) dataframes in R based on column values?

I'd like to split a dataframe into several component dataframes based on the values in one column. In my example, I want to split dat into dat.1, dat.2 and dat.3 using the values in column "cond". Is ...
3
votes
5answers
371 views

Subsetting a dataframe in R by multiple conditions

I would like to subset a dataframe by telling R what not to keep in the new dataframe. Here is a simplified sample dataframe: data v1 v2 v3 v4 a v d c a v d d b n p g b d d h c k d ...
3
votes
1answer
231 views

Optimize a summing of array (subset problem)

In the hottest part of my program (90% of time according to gprof), I need to sum one array A into another B. Both arrays are 2^n (n is 18..24) sized and holds an integer (for simplicity, actually the ...
3
votes
2answers
998 views

using multiple criteria in subset function and logical operators in R

If I want to select a subset of data in R, I can use the subset function. I wanted to base an analysis on data that that was matching one of a few criteria, e.g. that a certain variable was either 1, ...
3
votes
2answers
149 views

prolog: subsets of length k

in class we went over the subset_of/2 predicate that my teacher gave as follows: subset_of([],[]). subset_of([X|Xs],Zs):-subset_of(Xs,Ys),maybe_add(X,Ys,Zs). maybe_add(_,Ys,Ys). ...
3
votes
2answers
151 views

subselection dataframe

I have a simple questioon I think. In my dataframe I would like to make subset where column Quality_score is equal to: Perfect, Perfect*, Perfect*, Good, Good** and Good*** This in my solution by ...
3
votes
1answer
237 views

Generating subsets of a permuted wordlist in Python

I have a list of words and I need to generate all possible permutations of these, with one caveat. I currently use the following code: from itertools import permutations wordlist = ["word1", ...

1 2 3 4