Tagged Questions
1
vote
3answers
297 views
R: Sample into bins of predefined sizes (partition sample vector)
I'm working on a dataset that consists of ~10^6 values which clustered into a variable number of bins. In the course of my analysis, I am trying to randomize my clustering, but keeping bin size ...
2
votes
2answers
957 views
c++: Select a subset of a std::vector, based predefined element indices
I am looking for an efficient way of either trimming or copying a subset of an existing std::vector. The criteria for elements to be eligible for the subset / remain is that their index is contained ...
0
votes
2answers
2k views
C++: Efficiently extracting a subset of elements from a datatype that only has access via an iterator
I have another persons user defined data structure (for working on meshes). The only public access to the underlying elements is via an iterator (no direct access to "element" x is possible).
I also ...
0
votes
2answers
118 views
R: Is it possible to turn combinations of vectors into data sets?
I am a beginner in R.
After watching a number of tutorials on regression analysis (on youtube), I decided to make up my own data set and apply what I learnt to it. This is what I did!
I wanted to ...
3
votes
4answers
2k views
How do I split a vector into two columns to create ordered pairs for random assignment
I am trying to generate random pairs from 34 subjects for an experiment. Subjects will be assigned ID #'s 1-34. To generate the random ordered numbers (1-34) I used the following code:
### ...