Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベーステーブルからサンプリングするには、パターンを頻繁に使用します
library(dplyr) tbl(con, 'tableName') %>% mutate(z = random()) %>% compute() %>% arrange(z) %>% filter(row_number() < numSamples) %>% collect()
サンプルを複製できるようにシードを設定する方法はありますか?