NikaWorkspace supports almost all open-source Python libraries as long as Jupyter supports them. You can install any library you need using !pip install in code blocks.
# Install and use geopandas!pip install geopandasimport geopandas as gpd# Load geospatial datagdf = gpd.read_file('/workspace/data/shapefile.shp')gdf.plot()
# Install and use matplotlib/seaborn!pip install matplotlib seabornimport matplotlib.pyplot as pltimport seaborn as sns# Create plotsplt.figure(figsize=(10, 6))sns.scatterplot(data=df, x='x', y='y')plt.show()