We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88edffb commit a253b13Copy full SHA for a253b13
2 files changed
apps/dash-food-footprint/app.py
@@ -1,3 +1,5 @@
1
+import os
2
+
3
import dash
4
import dash_core_components as dcc
5
import dash_html_components as html
@@ -9,7 +11,8 @@
9
11
import plotly.graph_objs as go
10
12
import plotly.express as px
13
-path = "https://raw.githubusercontent.com/InesRoque3/GroupV_project2/main/data/"
14
+dirname = os.path.dirname(__file__)
15
+path = os.path.join(dirname, "data/")
16
17
emissions = pd.read_csv(path + "emissions_with_origin.csv")
18
productions = pd.read_csv(path + "productions.csv.gz")
apps/dash-food-footprint/runtime.txt
@@ -0,0 +1 @@
+python-3.7.6
0 commit comments