Editing to use count-log
Browse files
app.py
CHANGED
|
@@ -5,4 +5,4 @@ import numpy as np
|
|
| 5 |
chart_data = pd.read_csv("EU Rewilding Dataset Distribution.csv")
|
| 6 |
chart_data["count-log"] = np.log(chart_data["count"])
|
| 7 |
|
| 8 |
-
st.bar_chart(chart_data, x="common_name", y="count")
|
|
|
|
| 5 |
chart_data = pd.read_csv("EU Rewilding Dataset Distribution.csv")
|
| 6 |
chart_data["count-log"] = np.log(chart_data["count"])
|
| 7 |
|
| 8 |
+
st.bar_chart(chart_data, x="common_name", y="count-log")
|