Question: Why won't my data show up in my Plotly MAP (PYTHON) My data such as (location, id,created_at ect.) does not show up on my USA
Why won't my data show up in my Plotly MAP (PYTHON)
My data such as ("location, id,created_at ect.) does not show up on my USA Map. The Map should display with all of the separate categories in CSV file when hovered upon on the location in the US MAP.
import plotly.graph_objects as go import pandas as pd df = pd.read_csv('https://raw.githubusercontent.com/Istackz/OOSE-TEST/master/data_file.csv') df['id'] = df['type'] + '' + df['url'] + ', ' + df['created_at'] + '' + 'location: ' + df['description']+ df['how_to_apply']\ + df['company_logo'].astype(str) fig = go.Figure(data=go.Scattergeo( mode='markers', )) fig.update_layout( title='Github JOBS', geo_scope='usa',) fig.show()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
