Effacer les filtres
Effacer les filtres

Alternatives to 'datasample'

13 vues (au cours des 30 derniers jours)
Veena Chatti
Veena Chatti le 22 Août 2020
Commenté : Veena Chatti le 3 Sep 2020
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 commentaires
Adam Danz
Adam Danz le 22 Août 2020
randperm samples without replacement.
To sample with replacement, use randi.
Veena Chatti
Veena Chatti le 26 Août 2020
Thanks. I think I have it now.

Connectez-vous pour commenter.

Réponse acceptée

Kiran Felix Robert
Kiran Felix Robert le 26 Août 2020
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 commentaire
Veena Chatti
Veena Chatti le 3 Sep 2020
Thank you Kiran Felix Robert!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Sequence and Numeric Feature Data Workflows dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by