You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think such feature can be very useful specially when we have different variables (example Normalized Difference Vegetation Index (NDVI) and land surface temperature (LST) which have different values) rather than a common color bar.
%matplotlibinlineimportnumpyasnpimportpandasaspdimportxarrayasxrimportmatplotlib.pyplotaspltairtemps=xr.tutorial.open_dataset("air_temperature")
air=airtemps.air-273.15air.attrs=airtemps.air.attrsair.attrs["units"] ="deg C"aot=xr.concat([air.isel(time=0)*.01, air.isel(time=100)], "time")
# assume this is NDVI
(air.isel(time=0)*.01 ).plot()
# ndvi values cant be visualized when there is a common color bar with Facetingaot.plot(col='time')
WalidGharianiEAGLE
changed the title
Option to add indivual barplots for each variable when using the Faceting
Option to add indivual color bar for each variable when using the Faceting
Dec 8, 2022
Duplicate of #7342 (but not your fault, the title is misleading).
WalidGharianiEAGLE
changed the title
Option to add indivual color bar for each variable when using the Faceting
Option to add individual color bar for each variable when using the Faceting
Dec 8, 2022
Is your feature request related to a problem?
I think such feature can be very useful specially when we have different variables (example Normalized Difference Vegetation Index (NDVI) and land surface temperature (LST) which have different values) rather than a common color bar.
Describe the solution you'd like
Rather than manual plot to adjust each color bar, it will be more efficient to integrate this option automatically when using Faceting
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: