diff --git a/README.md b/README.md index 3671cad..ee92874 100644 --- a/README.md +++ b/README.md @@ -3350,7 +3350,7 @@ Plotly from plotly.express import line
= line(, x=, y=) # Or: line(x=, y=)
.update_layout(margin=dict(t=0, r=0, b=0, l=0)) # Or: paper_bgcolor='rgba(0, 0, 0, 0)' -
.write_html/json/image('') # Also:
.show() +
.write_html/json/image('') # Or:
.show() ``` #### Covid deaths by continent: diff --git a/index.html b/index.html index 7835492..d15d53b 100644 --- a/index.html +++ b/index.html @@ -2847,7 +2847,7 @@ c 7 8 from plotly.express import line <Figure> = line(<DF>, x=<col_name>, y=<col_name>) # Or: line(x=<list>, y=<list>) <Figure>.update_layout(margin=dict(t=0, r=0, b=0, l=0)) # Or: paper_bgcolor='rgba(0, 0, 0, 0)' -<Figure>.write_html/json/image('<path>') # Also: <Figure>.show() +<Figure>.write_html/json/image('<path>') # Or: <Figure>.show()

Covid deaths by continent:

covid = pd.read_csv('https://covid.ourworldindata.org/data/owid-covid-data.csv',