The subset tag has no wiki summary.
1
vote
2answers
69 views
find all disjoint (non-overlapping) sets from a set of sets
My problem: need to find all disjoint (non-overlapping) sets from a set of sets.
Background: I am using comparative phylogenetic methods to study trait evolution in birds. I have a tree with ~300 ...
1
vote
0answers
28 views
Filtering a data frame in R and an unwanted filtered out result
This snippet:
names<-c("Alice","Bob","Charlie")
ages<-c(25,24,25)
friends<-data.frame(names,ages)
a25 <- friends[friends$age==25,]
a25
table(a25$names)
gives me this output
names ...
0
votes
2answers
24 views
Plotting selective values in R above above a given value
I have two columns of data in a data frame in R. I want to plot values from the 2nd column that are above a particular value say 'p'. And I also want to have the X axis as the first column i.e the ...
29
votes
0answers
434 views
R: Why is the [[ ]] approach for subsetting a list faster than using $?
I've been working on a few projects that have required me to do a lot of list subsetting and while profiling code I realised that the object[["nameHere"]] approach to subsetting lists was usually ...
0
votes
1answer
41 views
How can I compare one level of a factor with all remaining levels in R
I have a dataframe similar to built-in InsectSprays (with factor and numeric data), but it contains 10+ numeric and 20+ factor vectors with few NAs. When I boxplot(numeric ~ factor), I notice that ...
0
votes
1answer
46 views
How do I parse DBObject to case class object using subset2?
Does anyone know how to parse DBObject to case class object using subset2 ? Super concise documentation doesn't help me :(
Consider following case class
case class MenuItem(id : Int, name: String, ...
2
votes
2answers
25 views
How to subset a dataframe by factor levels of another in R?
I have two daframes (A,B) that both contain exactly the same columns.
A<-data.frame(factor=c("A","B","C"),value=c(1,2,3))
B<-data.frame(factor=c("A","B","C","D","E"),value=c(7,8,9,4,5))
At ...
1
vote
1answer
41 views
Subset data frame based on unique combination of multiple conditions
I cant seem to find an answer through search to this on SO. I'm trying to select a subset of a data.frame based on four conditions (lon1, lon2, lat1 and lat2). I have a huge dissimilarity matrix that ...
0
votes
0answers
15 views
All subsets of a bitmask
I'm encoding a list of integers which represents cities from 0 to N-1 where 3<=N<=20 into a bitmask of length N where a 1 means city (place of 1 in the bitmask) is in the list.
For example: 1001 ...
-3
votes
4answers
55 views
Lisp function adding odd numbers from a subset
I need to make a fucntion in a clisp that would add all odd numbers from a set.For example subset (2,8), the result would be 15(3+5+7).any suggestions?
I do have something like this, where a is the ...
2
votes
2answers
44 views
Extract columns out of a data frame and order them
I have a data frame which looks like this:
structure(list(Mash_pear = c(0.192474082559755, 0.679726904159742,
0.778564545349054, 0.573745352397321, 0.56633658385284, 0.472559997318901,
...
1
vote
2answers
45 views
subset of a data frame in R
I have 2 data frames df2 and DF.
> DF
date tickers
1 2000-01-01 B
2 2000-01-01 GOOG
3 2000-01-01 V
4 2000-01-01 YHOO
5 2000-01-02 XOM
> df2
date tickers ...
0
votes
1answer
34 views
Generating permutations of a 25-th element set, is it possible on the computer?
Is it realistic to implement an algorithm that requires generating all permutations of a 25-th element set on our computer? All the subsets of such as set?
0
votes
4answers
66 views
r - find same times in n number of data frames
Consider the following example:
Date1 = seq(from = as.POSIXct("2010-05-03 00:00"),
to = as.POSIXct("2010-06-20 23:00"), by = 120)
Dat1 <- data.frame(DateTime = Date1,
...
1
vote
1answer
38 views
how to print odd numbered observations from a dataset SAS
I have i simple question, that I unfortunately cannot seem to solve myself.
How to print only observations with an odd observation number from a data set?
Kind Regards Maria
1
vote
2answers
59 views
R diff function on large dataset
I'd like to use the diff function on a really big data.frame : 140 Millions rows and two columns.
The goal is to compute the gap between two consecutive date activity, for each user_id.
For each ...
-1
votes
0answers
53 views
How to subset a dataset so that the distribution of a value matches a specific distribution? [closed]
I have data from two classes, let's say A and B.
I want to compare the values of X, but I know that X can be affected by Y. Thus, I want to keep the values of Y more or less constant so that the ...
1
vote
1answer
38 views
How to subset dataframe by last characters of a string in R
R-user,
I have this dataframe:
head(Niger_Meteo_98.11)
X.ID_punto MM.GG.AA T2m_max
1 1 01/01/98 303.235
2 2 01/01/99 303.356
3 3 01/01/00 303.477
4 ...
0
votes
3answers
34 views
R: Subset: Using whole dataframe except one column
I'd like to exclude one single column from a operation on a dataframe. Of course I could just replicate the dataframe without the column that I want to exclude, but this seems to be a workaround. ...
0
votes
2answers
49 views
subsetting n number of data frames in R
I have 3 data.frames:
# build first data.frame
Date1 = seq(from = as.POSIXct("1991-01-01 00:00"),
to = as.POSIXct("1991-12-31 23:00"), by = 60)
Dat1 <- data.frame(DateTime = Date1,
...
3
votes
2answers
68 views
Subsetting Data Frame Based on Contents of a “Column” List
Set-Up
I have a list matrix, where one of the "columns" is a list (I realize it's an odd dataset to work with, but I find it useful for other operations). Each entry of the list is either; (1) empty ...
0
votes
2answers
51 views
subsetting data using multiple variables in R
I have a data set, DATA, with many variables. DATA has a list mode and its class is a data.frame.
The variables I'm concerned with are AGE.MONTHS and LOCATION. I need to subset DATA into another set ...
0
votes
3answers
45 views
How do I create a subset of an array based on an array of indexes for that array in Ruby
If I have an array like this:
[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
and I want to select a subset of that array based on this arbitrary array of indexes:
[0,1,4,7,8,13,14,15,18,19]
...
2
votes
1answer
39 views
Subsetting Survey Design Objects Dynamically in R
I am trying to figure out how to subset a survey design objects dynamically. I have structured my loop to send in character strings, and don't know how to remove the quotes so R reads it as a call.
...
2
votes
0answers
59 views
simple way to randomly subset a raster in R
I work in R.
I have a raster (raster_entrop). I want to automatically generate random subset of this raster. The issue is that its extent is not rectangular and I want subsets completly enclosed in ...
3
votes
2answers
54 views
Subset data.table by logical column
I have a data.table with a logical column. Why the name of the logical column can not be used directly for the i argument? See the example.
dt <- data.table(x = c(T, T, F, T), y = 1:4)
# Works
...
2
votes
1answer
56 views
extract subset from data.frame
I have a data.frame consisting of coordinates of points in 3D. There is 4 x 3 columns for 4 possible points A1,A2,A3,A4. In each row, there are exactly two non-zero points (any two of A1...A4).I was ...
1
vote
1answer
88 views
Matching values in a column of one data frame with subsets of a column in another data frame
I am trying to match the values in a column of one data frame with the values in a column of a second data frame. The tricky part is that I would like to do the matching using subsets of the second ...
0
votes
0answers
29 views
Error: no applicable method for 'as.quoted' applied to an object of class “logical”?
I have the following code:
RIL <- subset(census, trt == "RIL")
RIL.remain <- subset(RIL, dbh1 != "NA" & dbh9 !="NA")
RIL.class.1 <- subset(RIL.remain, dbh2 >10 & dbh2 <19.99, ...
5
votes
4answers
60 views
Check if cell array is a subset of a nother in Matlab
I have two cell arrays of strings as follows
A={{a,b},{c},{d,e}}
B={{a,b},{c,d},{e}}
I want to check if A is a subset of B, meaning that each cell in A has a super-cell in B. In the given ...
3
votes
3answers
66 views
Subsetting data in a loop and write results to a list
I have dataframe containing five variables. Two of them are metric measurements and three of them contain groups stored as factors. I try to subset this dataframe three times in a loop by the ...
4
votes
3answers
57 views
Subsetting data conditional on first instance in R
data:
row A B
1 1 1
2 1 1
3 1 2
4 1 3
5 1 1
6 1 2
7 1 3
Hi all! What I'm trying to do (example above) is to sum those values in column A, but only when column B = 1 (so starting ...
1
vote
2answers
39 views
Subsetting data frame by vector of elements
I spent about 20 minutes looking through previous questions, but could not find what I am looking for. I have a large data frame I want to subset down based on a list of names, but the names in the ...
1
vote
2answers
90 views
Get all sub arrays of a particular length in an array
I want help with getting the subsets of an array in C#.
All other examples could not help me much.
I want to get all the subsets of a particular size of an array.
for example if input array is ...
0
votes
1answer
23 views
How to subset only those data that show a positive slope
I am trying to evaluate correlation between two variable but my raw data have a lot of background noise that I need to get rid of. In particular, I only want to keep the portion of the data that shows ...
2
votes
4answers
68 views
java new array where object value true, mysql 'where' syntax on array
What is the fastest way to get the selected objects from an array?
MyObject[] objects = new MyObject[]{new MyObject(true), new MyObject(false)};
MyObject[] selectedObjects = ???
Is there a faster ...
1
vote
2answers
59 views
R, getting the Subset of row vectors in a Matrix
in R, I want to create a matrix which is a subset of a matrix mat2 based on some criteria stored in another vector km$cluster$. Specifically, I want to get a subset of mat2 where the row names from ...
2
votes
1answer
43 views
R - downloading a subset from original dataset
I'm wondering if there is a possibility to download (from the website) a subset made from original dataset in Rdata format. The easiest way of course is to proceed in this manner:
...
0
votes
1answer
22 views
Is there a list of language's google webfont subsets requirement?
For example:
Turkish language (tr_TR) needs latin-ext subset.
Is there a list for which language needs which subsets for google webfonts?
0
votes
2answers
94 views
Find max subset of a huge set of integers
I have a huge set (S) of long unsigned integers in a .txt file. How can I find the max subset (Pmax) of S with the following property:
P{X1,X2,X3,...,Xn) | X1>=(Xn/4)
More details:
When I say ...
0
votes
1answer
42 views
Identity groups on data frame based on multiple criteria
The Problem
I'm trying to find a solution to overcome a deficient experimental design in establishing sampling points. The aim is to subset the original dataset, forcing sampling points ...
2
votes
5answers
53 views
Subsetting each level of a vector with a function and returning a new dataframe (in R)
I have a simple dataframe with two vectors, 'Speed' and 'ID' which looks like this:
mydata
ID Speed
1 1 6.031847
2 1 7.050654
3 1 7.769475
4 1 8.838968
5 1 9.956571
6 1 11.146864
...
0
votes
1answer
30 views
Filtering dataframe using subset delivers wrong entries
I've a simple problem within R using subset. It might be obvious, but im working here the last two hours without finding a solution.
My code as follows:
##I set a dataframe with 3 rows. the first ...
0
votes
2answers
38 views
Subset observations by group for those closest to median of entire sample
I have multiple sites - each visited multiple times. I would like to subset the data to include only a single visit from each site (but all observations from that visit) and I would like that visit to ...
1
vote
1answer
46 views
R referring to dataframe columns by label to delete them [duplicate]
An easy one I suppose though my searches have been pretty fruitless --
given
z=data.frame(X.39=rnorm(20),X.40=rnorm(20),X.51=rnorm(20))
the subsetting operation
z[,c('X.39','X.51')]
works. but
...
0
votes
3answers
87 views
connect two matrixes by columns and extract sub matrix
I have two matrixes (e.g., A and B). I would like to extract columns of B based on the order of A's first column:
For example
matrix A
name score
a 0.1
b 0.2
c 0.1
d 0.6
matrix B
a d b c ...
0
votes
1answer
57 views
Subset rows using date value inequality in R
I want to subset a data (DATA) set I have using 2 different date variables -- START and END (which are in columns 2 and 3).
It has two parts. First, I want to exclude rows with missing values for ...
1
vote
1answer
60 views
How to filter out the unique combinations from a list of subsets
I was trying come up with a script to to implement Subset sum Prob, with some help from the first script of this post. So, now running my script, I get this:
maci:python sant$ ./subsetSum.py ...
0
votes
1answer
82 views
find all k-length subsets of list in prolog
i need to find a k-length subset of list in prolog,
i have this function:
subset([], []).
subset([E|Tail], [E|NTail]):-
subset(Tail, NTail).
subset([_|Tail], NTail):-
subset(Tail, ...
3
votes
2answers
97 views
Comparing two ArrayLists - one as a subset of the other
I know that we can use the containsAll method while comparing two ArrayLists to check if one is a subset of the other. But this is what I would like. Consider an
ArrayList super = ...







