フィルターのクリア

Alternatives to 'datasample'

13 ビュー (過去 30 日間)
Veena Chatti
Veena Chatti 2020 年 8 月 22 日
コメント済み: Veena Chatti 2020 年 9 月 3 日
Hi!
I'm looking for an alternative to the datasample function. It's a part of the Statistics & Machine Learning toolbox. Any ideas? I want to be able to sample rows of data from tables and matrices and would like to have the choice of sampling with/without replacement.
Thanks for your ideas!
  5 件のコメント
Adam Danz
Adam Danz 2020 年 8 月 22 日
randperm samples without replacement.
To sample with replacement, use randi.
Veena Chatti
Veena Chatti 2020 年 8 月 26 日
Thanks. I think I have it now.

サインインしてコメントする。

採用された回答

Kiran Felix Robert
Kiran Felix Robert 2020 年 8 月 26 日
Hi Veena,
Yes, randomperm (without replacement) and randi (with replacement) can be used as an alternative.
Furthermore, if the dataset has been converted to either a matrix or an array format, the rows can be sampled without using a loop as shown in the example as follows,
X = rand(50,10); % Assume X is the dataset
SampledRows = X(randi(50,[200,1]),:); % 200 Sample rows (with replacement)
Kiran Felix Robert
  1 件のコメント
Veena Chatti
Veena Chatti 2020 年 9 月 3 日
Thank you Kiran Felix Robert!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by