- add path to sys.path

- pandas.concat
This commit is contained in:
Wim Pomp
2022-05-13 21:27:54 +02:00
parent be57e18b99
commit 10b2ff52e1
3 changed files with 7 additions and 5 deletions

View File

@@ -9,6 +9,8 @@ import mpld3
import requests
import io
pandas.set_option('display.max_rows', 500)
class Plots:
@staticmethod
@@ -111,7 +113,7 @@ class Corona:
w['Country/Region'] = 'World'
w['Lat'] = 0
w['Long'] = 0
return p.append(w)
return pandas.concat((p, pandas.DataFrame(w).T))
@staticmethod
def plot_series(fig, ax, dates_number, dates_obj, cum, llabel=None, rlabel=None):