Spaces:
Runtime error
Runtime error
Update app3.py
Browse files
app3.py
CHANGED
@@ -14,7 +14,6 @@ import matplotlib.pyplot as plt
|
|
14 |
import panel as pn
|
15 |
import vega_datasets
|
16 |
|
17 |
-
|
18 |
df2=pd.read_csv("https://raw.githubusercontent.com/dallascard/SI649_public/main/altair_hw3/approval_topline.csv")
|
19 |
|
20 |
# fix the time stamps and reorganize the data to combine approve and disapprove into one column
|
@@ -24,6 +23,9 @@ df2=pd.melt(df2, id_vars=['president', 'subgroup', 'timestamp'], value_vars=['ap
|
|
24 |
# Enable Panel extensions
|
25 |
pn.extension('vega')
|
26 |
|
|
|
|
|
|
|
27 |
# Define a function to create and return a plot
|
28 |
def create_plot(subgroup='All polls', date_range=[df2['timestamp'].min(), df2['timestamp'].max()], moving_av_window=1):
|
29 |
|
@@ -44,9 +46,9 @@ def create_plot(subgroup='All polls', date_range=[df2['timestamp'].min(), df2['t
|
|
44 |
]
|
45 |
|
46 |
# Apply any required transformations to the data in pandas
|
47 |
-
smooth_data = approval_df2.sort_values('timestamp').rolling(window=moving_av_window, on='timestamp').mean().shift(moving_av_window
|
48 |
|
49 |
-
chart_data = approval_df2.copy()
|
50 |
|
51 |
# Line chart
|
52 |
line = alt.Chart(smooth_data).mark_line(color='red', size=2).encode(
|
|
|
14 |
import panel as pn
|
15 |
import vega_datasets
|
16 |
|
|
|
17 |
df2=pd.read_csv("https://raw.githubusercontent.com/dallascard/SI649_public/main/altair_hw3/approval_topline.csv")
|
18 |
|
19 |
# fix the time stamps and reorganize the data to combine approve and disapprove into one column
|
|
|
23 |
# Enable Panel extensions
|
24 |
pn.extension('vega')
|
25 |
|
26 |
+
# we want to use bootstrap/template, tell Panel to load up what we need
|
27 |
+
pn.extension(design='bootstrap')
|
28 |
+
|
29 |
# Define a function to create and return a plot
|
30 |
def create_plot(subgroup='All polls', date_range=[df2['timestamp'].min(), df2['timestamp'].max()], moving_av_window=1):
|
31 |
|
|
|
46 |
]
|
47 |
|
48 |
# Apply any required transformations to the data in pandas
|
49 |
+
smooth_data = approval_df2.sort_values('timestamp').rolling(window=moving_av_window, on='timestamp').mean().shift(-moving_av_window+1)
|
50 |
|
51 |
+
chart_data = approval_df2.sort_values('timestamp').copy()
|
52 |
|
53 |
# Line chart
|
54 |
line = alt.Chart(smooth_data).mark_line(color='red', size=2).encode(
|