argopy.ArgoIndex.plot#
- ArgoIndex.plot()#
Extension providing plot methods
Examples
from argopy import ArgoIndex idx = ArgoIndex().query.wmo(6903091) idx.plot.trajectory()
from argopy import ArgoIndex idx = ArgoIndex(index_file='bgc-s') idx.query.params('CHLA') idx.plot.trajectory(set_global=1, add_legend=0, traj=0, cbar=False, markersize=12, markeredgesize=0.1, dpi=120, figsize=(20,20));
from argopy import ArgoIndex idx = ArgoIndex().load() idx.plot.bar(by='profiler') idx.plot.bar(by='dac')
from argopy import ArgoIndex idx = ArgoIndex(index_file='bgc-s') idx.query.params('CHLA') idx.plot.bar(by='profiler') # Plot query results (default) idx.plot.bar(by='profiler', index=True) # Force plot of full index
See also