Binning 2 columns and summing 3rd

5 ビュー (過去 30 日間)
Vaidehi Joshi
Vaidehi Joshi 2022 年 1 月 17 日
編集済み: Vaidehi Joshi 2022 年 1 月 18 日
I have three very large datasets of latitude, potential temperature and ozone. I want to binning the data of latitude and potential temperature and according to the bins, I want to sum ozone data and put it into each bins that I have created. I have tried using accumaray which shows me,
"Error using accumarray
First input SUBS must contain positive integer subscripts."
Indeed ozone data contains float numbers.
Am I missing something or what I could not understand.
I am attaching script as under (also pasting the copied script):
I have also attached mat files of the data.
clc;
clear all;
close all;
ozonef = cell2mat(ozone);
poslatf = cell2mat(poslat);
Tpotf = cell2mat(Tpot);
% % %bining the data-
poslatbin = -90:2:90;
Tpotbin = 250:5:380; %%%% I have values in between this range
nposlat = length(poslatbin);
nTpot = length(Tpotbin);
PL = discretize(poslatf, poslatbin);
TP = discretize(Tpotf, Tpotbin);
ozonef(isnan(ozonef))=min(ozonef);
idx = sub2ind([nposlat nTpot], PL, TP);
FO = accumarray(idx, ozonef, [nposlat*nTpot 1], @(x) mean(x));
contourf(PL, TP, FO);

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 1 月 17 日
編集済み: Cris LaPierre 2022 年 1 月 17 日
I would put your data into a table, then use groupsummary to bin and sum the data as you describe. You will find the Access Data in Tables page helpful.
load latitude
load temperature
load ozone
% create table
data = table(latitude,temperature,ozone)
data = 47101×3 table
latitude temperature ozone ________ ___________ _____ 24.876 290.97 1.41 24.866 290.92 1.41 24.856 291.11 1.41 24.845 291.27 1.41 24.833 291.28 1.41 24.825 291.13 1.41 24.815 291.24 1.41 24.805 291.43 1.41 24.795 291.5 1.41 24.785 291.56 1.41 24.775 291.52 1.41 24.765 291.43 1.41 24.755 291.54 1.41 24.746 291.75 1.41 24.736 291.8 1.41 24.726 292.03 1.41
% define bins
poslatbin = -90:2:90;
Tpotbin = 250:5:380;
% create table of binned data
binTbl = groupsummary(data,["latitude","temperature"],{poslatbin,Tpotbin},'sum',"ozone")
binTbl = 370×4 table
disc_latitude disc_temperature GroupCount sum_ozone _____________ ________________ __________ __________ [-34, -32) [330, 335) 36 15973 [-34, -32) [335, 340) 56 21635 [-34, -32) [340, 345) 743 52250 [-34, -32) [345, 350) 455 45569 [-34, -32) <undefined> 497 30712 [-32, -30) [335, 340) 44 16214 [-32, -30) [340, 345) 517 1.3762e+05 [-32, -30) [345, 350) 648 78325 [-32, -30) <undefined> 351 19507 [-30, -28) [335, 340) 39 11469 [-30, -28) [340, 345) 953 1.1891e+05 [-30, -28) [345, 350) 475 50072 [-30, -28) <undefined> 195 18177 [-28, -26) [335, 340) 332 16639 [-28, -26) [340, 345) 1003 62685 [-28, -26) [345, 350) 540 51063
  6 件のコメント
Cris LaPierre
Cris LaPierre 2022 年 1 月 18 日
I don't understand the question. My suggestion - make the changes, and just be sure to update the corersponding variable names in the code I shared, and see if it works.
Vaidehi Joshi
Vaidehi Joshi 2022 年 1 月 18 日
編集済み: Vaidehi Joshi 2022 年 1 月 18 日
I did change the axises. As I made the changes in these lines
cdata = reshape(binTbl.sum_ozone,length(Tpotbin instead of poslatbin),length(postlatbin instead of Tpotbin)); and
contourf(Tpotbin,poslatbin,cdata) same as above.
cdata matrix will be changed right!
Here what I noticed with the reshape function is, values are also changing, accordingly plot.
I want to crosscheck whether these values are correct or not.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by