Spaces:
Sleeping
Sleeping
Hamza Salhi commited on
Update exercises/block_modelling.py
Browse files
exercises/block_modelling.py
CHANGED
|
@@ -133,7 +133,7 @@ def block_modelling():
|
|
| 133 |
st.title("Block Modelling Exercise")
|
| 134 |
st.markdown("The figure below is an orthogonal projection of full width intercepts within a narrow vein.")
|
| 135 |
st.markdown("## **Visual Trend Analysis**")
|
| 136 |
-
df = pd.read_csv("
|
| 137 |
df = df[df.use==1].copy().reset_index(drop=True)
|
| 138 |
fig, ax = plot_samps(df)
|
| 139 |
st.pyplot(fig)
|
|
|
|
| 133 |
st.title("Block Modelling Exercise")
|
| 134 |
st.markdown("The figure below is an orthogonal projection of full width intercepts within a narrow vein.")
|
| 135 |
st.markdown("## **Visual Trend Analysis**")
|
| 136 |
+
df = pd.read_csv("data//sim_pts.csv")
|
| 137 |
df = df[df.use==1].copy().reset_index(drop=True)
|
| 138 |
fig, ax = plot_samps(df)
|
| 139 |
st.pyplot(fig)
|