Spaces:
Running
Running
Synced repo using 'sync_with_huggingface' Github Action
Browse files
app.py
CHANGED
@@ -29,7 +29,8 @@ df["created_year"] = df["Created - W 3 CDTF (DCTERMS)"].apply(
|
|
29 |
values = st.slider(
|
30 |
"Select a year range: ",
|
31 |
df["created_year"].min(),
|
32 |
-
df["created_year"].max()
|
|
|
33 |
)
|
34 |
|
35 |
# print(df["created_year"])
|
|
|
29 |
values = st.slider(
|
30 |
"Select a year range: ",
|
31 |
df["created_year"].min(),
|
32 |
+
df["created_year"].max(),
|
33 |
+
(df["created_year"].min(), df["created_year"].max()),
|
34 |
)
|
35 |
|
36 |
# print(df["created_year"])
|