フィルターのクリア

randomly divide a matrix

8 ビュー (過去 30 日間)
baran
baran 2017 年 5 月 21 日
コメント済み: Star Strider 2021 年 6 月 6 日
hi, i have a 16435*25 matrix that name is input, i want to randomly divided it in 2 parts: one for train and another for validate data, that 70% of its rows randomly selected as train matrix (i.e 11504*25 matrix) and 30% of its rows randomly selected as validate matrix (i.e 4930*25), how can i do this? thanks a lot

採用された回答

Star Strider
Star Strider 2017 年 5 月 21 日
For your matrix:
row_idx = randperm(16435, 11504)';
To illustrate:
example = randperm(10, 7)'
example =
5
8
2
4
7
3
10
  4 件のコメント
Onurcan BAL
Onurcan BAL 2021 年 6 月 6 日
Thanks for both question and this explanation!
Star Strider
Star Strider 2021 年 6 月 6 日
My pleasure!
(A Vote would be appreciated!)
.

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

その他の回答 (1 件)

MathReallyWorks
MathReallyWorks 2017 年 5 月 21 日
編集済み: MathReallyWorks 2017 年 5 月 21 日
Hello Dear,
Use this code. I've generated a random matrix of the same order that you want. I have randomized all the rows of matrix and then I'm selecting first 11504 rows for training and rest for validation. I hope it will be helpful.
orderedArray = rand(16435,25); % Random Data %You can use your data here
shuffledArray = orderedArray(randperm(size(orderedArray,1)),:); %Randomizing the rows of matrix
t=zeros(11504,25); % Size of Train Data
v=zeros(4930,25); % Size of Validate Data
for i=1:11504
t(i,:) = shuffledArray(i,:);
end
j=1;
for i=11541:16435
v(j,:) = shuffledArray(i,:);
j=j+1;
end
Type whos t and whos v on command window, you will get to know the dimensions of train and validate data matrices.

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by