P-a-l commited on
Commit
adf8deb
1 Parent(s): 6cecd1c

Inicio prueba de app

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. app.py +17 -0
  3. covid_data.csv +0 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ venv/
2
+ __pycache__
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import streamlit as st
3
+ import pandas as pd
4
+ import numpy as np
5
+ import plotly.express as px
6
+ from plotly.subplots import make_subplots
7
+ import plotly.graph_objects as go
8
+ import matplotlib.pyplot as plt
9
+
10
+
11
+ df = pd.read_csv('covid_data.csv')
12
+
13
+ st.title("Covid-19 Dashboard de EEUU")
14
+ st.markdown('A través de este dashboard analizaremos aspectos interesantes de la pandemia COVID -19 en EEUU')
15
+ st.markdown('Coronavirus disease (COVID-19) is an infectious disease caused by a newly discovered coronavirus. Most people infected with the COVID-19 virus will experience mild to moderate respiratory illness and recover without requiring special treatment.')
16
+ st.sidebar.title("Visualization Selector")
17
+ st.sidebar.markdown("Select the Charts/Plots accordingly:")
covid_data.csv ADDED
The diff for this file is too large to render. See raw diff