필터 지우기
필터 지우기

Splitting a database up

조회 수: 1 (최근 30일)
Anna Mielcarek
Anna Mielcarek 2023년 3월 23일
답변: Antoni Garcia-Herreros 2023년 3월 23일
Hi,
I have a massive dataset of around 72,000 lines, and 30 rows.
In row 1 I have the date (in a DDMM format).
For each date I have a series of rows with data in, so the date repeats itself a fair amount.
I only want one row per date.
Currently, I have used:
[~,udix}= unique(data(:,1),'stable');
to read the first of the date lines, however is there a way to randomly select one of the repeating dates?

답변 (1개)

Antoni Garcia-Herreros
Antoni Garcia-Herreros 2023년 3월 23일
Hello Anna,
You can generate a random number using the rand function
n = floor(udix(1) + (udix(2)-1-udix(1)) .* rand(1,1));
% This generates a random number between the index of the first date and the index of the secon date
Hope this helps

카테고리

Help CenterFile Exchange에서 Database Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by