在数据帧中每组采样n个随机行 [英] Sample n random rows per group in a dataframe

查看:108
本文介绍了在数据帧中每组采样n个随机行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从这些问题中-从R数据帧的子集& 对数据帧中的随机行进行采样我可以轻松地看到如何随机采样(选择)来自df的'n'行,或源自df中特定级别的因子的'n'行.

From these questions - Random sample of rows from subset of an R dataframe & Sample random rows in dataframe I can easily see how to randomly sample (select) 'n' rows from a df, or 'n' rows that originate from a specific level of a factor within a df.

以下是一些示例数据:

df <- data.frame(matrix(rnorm(80), nrow=40))
df$color <-  rep(c("blue", "red", "yellow", "pink"), each=10)

df[sample(nrow(df), 3), ] #samples 3 random rows from df, without replacement.

例如只需从'粉红色'颜色中抽取3个随机行-使用library(kimisc):

To e.g. just sample 3 random rows from 'pink' color - using library(kimisc):

library(kimisc)
sample.rows(subset(df, color == "pink"), 3)

或编写自定义函数:

sample.df <- function(df, n) df[sample(nrow(df), n), , drop = FALSE]
sample.df(subset(df, color == "pink"), 3)

但是,我想从因子的每个级别中抽取3(或n)个随机行. IE.新的df将有12行(蓝色的3行,红色的3行,黄色的3行,粉红色的3行).显然可以多次运行,为每种颜色创建newdfs,然后将它们绑定在一起,但是我正在寻找一个更简单的解决方案.

However, I want to sample 3 (or n) random rows from each level of the factor. I.e. the new df would have 12 rows (3 from blue, 3 from red, 3 from yellow, 3 from pink). It's obviously possible to run this several times, create newdfs for each color, and then bind them together, but I am looking for a simpler solution.

推荐答案

您可以使用ave为具有特定因子水平的每个元素分配一个随机ID.然后,您可以选择特定范围内的所有随机ID.

You can assign a random ID to each element that has a particular factor level using ave. Then you can select all random IDs in a certain range.

rndid <- with(df, ave(X1, color, FUN=function(x) {sample.int(length(x))}))
df[rndid<=3,]

如果您对此感兴趣,可以保留原始的行顺序和行名.此外,您可以重新使用rndid向量来轻松创建不同长度的子集.

This has the advantage of preserving the original row order and row names if that's something you are interested in. Plus you can re-use the rndid vector to create subset of different lengths fairly easily.

这篇关于在数据帧中每组采样n个随机行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆