I just had to move from R to Python due to in Python there is a powerful library that I need.
However, these days have been a nightmare with python. The topic of the libraries, see the functions, the bunch of IDEs and the visualization is by far much more easier and intuitive in R studio than in Python in my opinion.
Now I am handle a new problem. I want to use interactive web base maps using the library Kepler in Python. However, I don't know why I can visualize it in Jupyter and in Spyder not. Essentially, is the following code:
import keplergl
from keplergl import KeplerGl
map_1 = KeplerGl()
map_1
and
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Scatter(y=[2, 1, 4, 3]))
fig.add_trace(go.Bar(y=[1, 4, 3, 2]))
fig.update_layout(title = 'Hello Figure')
fig.show()
Does any one knows why ? I have the same problem with the library plotly
Thank you.