Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Taking a disproportionate sample from a dataset in R

Tags:

random

r

sampling

If I have a large dataset in R, how can I take random sample of the data taking into consideration the distribution of the original data, particularly if the data are skewed and only 1% belong to a minor class and I want to take a biased sample of the data?

like image 509
simplyme Avatar asked Apr 20 '12 05:04

simplyme


People also ask

How do I randomly subsample in R?

Take Random Samples from a Data Frame in R Programming – sample_n() Function. sample_n() function in R Language is used to take random sample specimens from a data frame.

How do you select a sample from a population in R?

To select a sample, r has the sample() function. This function can be used for combinatoric problems and statistical simulation.


1 Answers

The sample(x, n, replace = FALSE, prob = NULL) function takes a sample from a vector x of size n. This sample can be with or without replacement, and the probabilities of selecting each element to the sample can be either the same for each element, or a vector informed by the user.

If you want to take a sample of same probabilities for each element with 50 cases, all you have to do is

n <- 50
smpl <- df[sample(nrow(df), 50),]

However, if you want to give different probabilities of being selected for the elements, let's say, elements that sex is M has probability 0.25, while those whose sex is F has prob 0.75, you should do

n <- 50
prb <- ifelse(sex=="M",0.25,0.75)
smpl <- df[sample(nrow(df), 50, prob = prb),]
like image 71
João Daniel Avatar answered Oct 27 '22 23:10

João Daniel