-
Notifications
You must be signed in to change notification settings - Fork 442
Open
Labels
Description
I have two datasets, geopotential height (GPH) and Precipitation. Each variable has the same time dimension (year).
I want to do clustering for each year, and I was wondering if and how I can run SOM considering "both" variables (not doing SOM for each variable individually).
I tried with np.hstack, but this merges each variable array, so I'm not sure if it's accurate.
(if GPH have (year:20, flatten_values:500) shape and Precipitation have (year:20, flatten_values:500), np.hstack made it into (year:20, flatten_values:10000, just attached it)
I was wondering if this is even possible.
Reactions are currently unavailable