Matplotlib interactive mode in Kaggle - matplotlib

Is there any way to run a notebook in interactive mode in Kaggle?
In this notebook, I'm getting errors with the get_window_extent method, and the images don't show correctly.

Related

How to use custom tile server for Keplergl in Jupyter Notebook

I am trying to use a custom tile server other them Mapbox for keplergl in Jupyter Notebook.
I added an exported config file from keplergl but it doesn't work.

Launch Dash App from Jupyter Notebook using wget?

What i have done is downloaded a already preset skeleton for my dash app using a !wget function in Jupyter Notebook, I was wondering how could i launch the app?
Is there something similar to this line of code i could use python3 spacex_dash_app.py?
Thank you.
The ! symbol passes your commands to the underlying shell running Jupyter.
Similar to prefixing wget with !, you can run !python3 spacex_dash_app.py, after making sure that spacex_dash_app.py is in the same working directory as your Jupyter notebook.

How do I embed a local video into Jupyter Notebook that I can then convert to a PDF?

Have a local video that I'd like to embed into a jupyter notebook and then convert that jupyter notebook into a PDF but am having difficulties. Have tried solutions like this but the video does not display properly in the notebook and the converted pdf just has code.

Plotting Xarray images with Geoviews on a Google Colaboratory Notebook

I'm trying to reproduce the code from this link on Google Colaboratory but my Colab Notebook crashes for reasons I don't understand. Is it possible to get this to work properly?
I can confirm the crash in this notebook.
https://colab.research.google.com/drive/1XwlC2onMlTW0mepTN16Pd1Mj0g_T3dNV
This issue has to do with the fact that Cartopy and Shapely aren't friends...
Shapely is preinstalled in Google Colab, causing a plain install of Cartopy to give problems.
You will have to uninstall Shapely first and reinstall it with no-binary.
Also in order for Geoviews to show plots in Google Colab you will have to call gv.extension('bokeh') in every cell where you want to plot something.
Follow this notebook to see the example code of Geoviews working correctly in Google Colab:
https://colab.research.google.com/drive/1sI51h7l-ySoW2bLrU-K1LMm-TYNVBlif

Google map does not display correctly in jupyter notebook

I'm trying to use google map API to visualize some data in jupyter notebook. Here is the code I used to display basic map in jupyter:
import gmaps
import os
import json
import gmaps.datasets
gmaps.configure(api_key="AIz....")
fig=gmaps.figure()
fig
After I ran the code, nothing was displayed. I used my own google API key and couldn't figure out why the map isn't displayed. I'm new to the geojson field, so any idea or thoughts is appreciated.
Did you make sure Widgets are enabled in your jupyter? try this before you run Jupyter:
jupyter nbextension enable --py gmaps
jupyter nbextension enable --py widgetsnbextension
If you are using JupyterLab you can check out the steps in the documentation here
JupyterLab Documentation