StevenLe456 commited on
Commit
f8fb7b3
·
1 Parent(s): f3e7f52

Changed data format to parquet

Browse files
Files changed (3) hide show
  1. app.py +3 -2
  2. odr.sql → odr.parquet +2 -2
  3. requirements.txt +1 -1
app.py CHANGED
@@ -1,11 +1,12 @@
1
- from dash import Dash, html
2
 
3
  app = Dash(__name__)
4
 
5
  server = app.server
6
 
7
  app.layout = html.Div([
8
- html.Div(children='ODR Exploratory Data Analysis Dashboard')
 
9
  ])
10
 
11
  def main():
 
1
+ from dash import Dash, dash_table, html
2
 
3
  app = Dash(__name__)
4
 
5
  server = app.server
6
 
7
  app.layout = html.Div([
8
+ html.Div(children='ODR Exploratory Data Analysis Dashboard'),
9
+ dash_table.DataTable()
10
  ])
11
 
12
  def main():
odr.sql → odr.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9793d4352073f65a61a5ffbe859862e40a2cd9fb187c7e45fd4376359b597cd3
3
- size 551497728
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5c48b36b029ba1647ceb7a619a77ac32eb7b4f2fc9627b6148241adef56f678
3
+ size 507277292
requirements.txt CHANGED
@@ -6,7 +6,6 @@ dash==2.15.0
6
  dash-core-components==2.0.0
7
  dash-html-components==2.0.0
8
  dash-table==5.0.0
9
- duckdb==0.9.2
10
  Flask==3.0.2
11
  gunicorn==21.2.0
12
  h11==0.14.0
@@ -20,6 +19,7 @@ numpy==1.26.3
20
  packaging==23.2
21
  pandas==2.2.0
22
  plotly==5.18.0
 
23
  python-dateutil==2.8.2
24
  pytz==2024.1
25
  requests==2.31.0
 
6
  dash-core-components==2.0.0
7
  dash-html-components==2.0.0
8
  dash-table==5.0.0
 
9
  Flask==3.0.2
10
  gunicorn==21.2.0
11
  h11==0.14.0
 
19
  packaging==23.2
20
  pandas==2.2.0
21
  plotly==5.18.0
22
+ pyarrow==15.0.0
23
  python-dateutil==2.8.2
24
  pytz==2024.1
25
  requests==2.31.0