File size: 11,324 Bytes
50bf100
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
 
 
 
 
9d96327
50bf100
 
 
 
9d96327
50bf100
 
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
 
 
 
 
9d96327
50bf100
 
 
 
9d96327
50bf100
 
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
 
 
 
 
9d96327
50bf100
 
 
 
9d96327
50bf100
 
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
 
 
 
 
9d96327
50bf100
 
 
 
9d96327
50bf100
 
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
 
 
 
 
9d96327
50bf100
 
 
 
9d96327
50bf100
 
9d96327
50bf100
 
 
9d96327
50bf100
 
 
 
 
 
9d96327
50bf100
9d96327
50bf100
9d96327
50bf100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import streamlit as st

def capping_ex():
 
  st.title("Capping Exercise")
  
  count_correct = 0
  
  st.write("The grade restriction module introduced some of the tools that can help you identify whether high grade restraining is required. This exercise uses real data and shows how the high grade restraining workflow is iterative, and that your decision to domain, cap, or otherwise restrict outlier samples should be informed by a group of tools. Lastly, it is important to note that you may elect to revisit your high grade restraining workflow after validating your estimate visually and statistically since the impact of high grade samples on the final resource estimate can be significant.")

#   st.image("images//wireframe_header.jpg", use_column_width=True)

  st.header("Exercise 1 - Gold Deposit - Question 1")
   
  q1_options = ['Please Select an Answer', 
             '10 g/t Au', 
             '20 g/t Au', 
             '25 g/t Au',
               'Other',
               'Something is wrong']
  
  
  q1_answer=st.radio('Review the following histogram, probability plot and decile analysis and determine which capping level is most appropriate. Careful review of the Plan and Oblique views should help provide a better sense of the spatial distribution of the pre-selected decile thresholds.', options=q1_options, index=0, key='quest1')
  col1, col2, col3 = st.beta_columns((1,1.5,1))
  with col1:
   st.subheader("Decile Analysis")
   st.image("images//HG_LG_Decile.jpg", use_column_width=True)
  with col2:
   st.subheader("Histogram")
   st.write("")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_LG_HISTO.jpg", use_column_width=True)
  with col3:
   st.subheader("Probability Plot")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_LG_PP.jpg", use_column_width=True)
  
  cola1, cola2 = st.beta_columns((1,1.6))
  with cola1:
   st.subheader("Plan View - Looking Down")
   st.image("images//HG_LG_PlanCaps.jpg", use_column_width=True)
  with cola2:
   st.subheader("Oblique View - Looking Along Strike")
   st.image("images//HG_LG_ObliqueCaps.jpg", use_column_width=True)
  

  st.header("Exercise 1 - Gold Deposit - Question 2")
   
  q2_options = ['Please Select an Answer', 
             '5 g/t Au', 
             '10 g/t Au', 
             '15 g/t Au',
               'Other',
               'Something is wrong']
  
  q2_answer=st.radio('Review the following histogram, probability plot and decile analysis and determine which capping level is most appropriate. Careful review of the Plan and Oblique views should help provide a better sense of the spatial distribution of the pre-selected decile thresholds.', options=q2_options, index=0, key='quest2')
  colb1, colb2, colb3 = st.beta_columns((1,1.5,1))
  with colb1:
   st.subheader("Decile Analysis")
   st.image("images//LG_Decile.jpg", use_column_width=True)
  with colb2:
   st.subheader("Histogram")
   st.write("")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//LG_HISTO.jpg", use_column_width=True)
  with colb3:
   st.subheader("Probability Plot")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//LG_PP.jpg", use_column_width=True)
  
  colc1, colc2 = st.beta_columns((1,1.6))
  with colc1:
   st.subheader("Plan View - Looking Down")
   st.image("images//LG_PlanCaps.jpg", use_column_width=True)
  with colc2:
   st.subheader("Oblique View - Looking Along Strike")
   st.image("images//LG_ObliqueCaps.jpg", use_column_width=True)
  
  

  
  st.header("Exercise 1 - Gold Deposit - Question 3")
   
  q3_options = ['Please Select an Answer', 
             '10 g/t Au', 
             '20 g/t Au', 
             '25 g/t Au',
               'Other',
               'Something is wrong']
  
  q3_answer=st.radio('Review the following histogram, probability plot and decile analysis and determine which capping level is most appropriate. Careful review of the Plan and Oblique views should help provide a better sense of the spatial distribution of the pre-selected decile thresholds.', options=q3_options, index=0, key='quest3')
  cold1, cold2, cold3 = st.beta_columns((1,1.5,1))
  with cold1:
   st.subheader("Decile Analysis")
   st.image("images//HG_Decile.jpg", use_column_width=True)
  with cold2:
   st.subheader("Histogram")
   st.write("")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_HISTO.jpg", use_column_width=True)
  with cold3:
   st.subheader("Probability Plot")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_PP.jpg", use_column_width=True)
  
  cole1, cole2 = st.beta_columns((1,1.6))
  with cole1:
   st.subheader("Plan View - Looking Down")
   st.image("images//HG_PlanCaps.jpg", use_column_width=True)
  with cole2:
   st.subheader("Oblique View - Looking Along Strike")
   st.image("images//HG_ObliqueCaps.jpg", use_column_width=True)
  

  st.header("Exercise 1 - Gold Deposit - Question 4")
   
  q4_options = ['Please Select an Answer', 
             '5 g/t Au', 
             '10 g/t Au', 
             '15 g/t Au',
               'Other',
               'Something is wrong']
  
  q4_answer=st.radio('Review the following histogram, probability plot and decile analysis and determine which capping level is most appropriate. Careful review of the Plan and Oblique views should help provide a better sense of the spatial distribution of the pre-selected decile thresholds.', options=q4_options, index=0, key='quest4')
  colf1, colf2, colf3 = st.beta_columns((1,1.5,1))
  with colf1:
   st.subheader("Decile Analysis")
   st.image("images//HG_2_7_Decile.jpg", use_column_width=True)
  with colf2:
   st.subheader("Histogram")
   st.write("")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_2_7_HISTO.jpg", use_column_width=True)
  with colf3:
   st.subheader("Probability Plot")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG_2_7_PP.jpg", use_column_width=True)
  
  colg1, colg2 = st.beta_columns((1,1.6))
  with colg1:
   st.subheader("Plan View - Looking Down")
   st.image("images//HG_2_7_PlanCaps.jpg", use_column_width=True)
  with colg2:
   st.subheader("Oblique View - Looking Along Strike")
   st.image("images//HG_2_7_ObliqueCaps.jpg", use_column_width=True)
  


  st.header("Exercise 1 - Gold Deposit - Question 5")
   
  q5_options = ['Please Select an Answer', 
             '10 g/t Au', 
             '20 g/t Au', 
             '25 g/t Au',
               'Other',
               'Something is wrong']
  
  q5_answer=st.radio('Review the following histogram, probability plot and decile analysis and determine which capping level is most appropriate. Careful review of the Plan and Oblique views should help provide a better sense of the spatial distribution of the pre-selected decile thresholds.', options=q5_options, index=0, key='quest5')
  colh1, colh2, colh3 = st.beta_columns((1,1.5,1))
  with colh1:
   st.subheader("Decile Analysis")
   st.image("images//HG1_Decile.jpg", use_column_width=True)
  with colh2:
   st.subheader("Histogram")
   st.write("")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG1_HISTO.jpg", use_column_width=True)
  with colh3:
   st.subheader("Probability Plot")
   st.write("")
   st.write("")
   st.write("")
   st.image("images//HG1_PP.jpg", use_column_width=True)
  
  coli1, coli2 = st.beta_columns((1,1.6))
  with coli1:
   st.subheader("Plan View - Looking Down")
   st.image("images//HG1_PlanCaps.jpg", use_column_width=True)
  with coli2:
   st.subheader("Oblique View - Looking Along Strike")
   st.image("images//HG1_ObliqueCaps.jpg", use_column_width=True)
  
  

  st.image("images//wireframe_header.jpg", use_column_width=True)
  
  st.write("As you might have gathered from the plan and oblique views, the gold deposit dataset from Question 1 contains a high grade and low grade population, where the high grade veins are contained within a lower grade alteration halo. The second exercise is a continuation from the first and requires you to match the domains shown in the images below with the statistics presented in each of the questions from the first exercise. If you had some incorrect responses in the first exercise, consult the information and images below prior to beginning Exercise 2.")
  
  st.write("Note: The images below are inclined views and are looking down over the along strike oblique views presented in Exercise 1. Wireframes were constructed for Domains 1 and 2 at a nominal cut-off grade of 1 g/t Au while the Domain 3 wireframes were constructed at a nominal 0.20 g/t Au cut-off grade.")

  st.subheader("Domains 1, 2 and 3")
  st.image("images//Domains123.jpg", use_column_width=True)
  st.subheader("Domains 1, 2 and 3 with Capped Assays")
  st.image("images//Domains123_Caps2.jpg", use_column_width=True)
  st.subheader("Capped Assays")
  st.image("images//Domains123_Caps.jpg", use_column_width=True)

  st.header("Exercise 2 - Gold Deposit - Question 1")
   
  q6_options = ['Please Select an Answer', 
             'Domain 1', 
             'Domain 2', 
             'Domain 3',
             'Domains 1 and 2',
             'Domains 1 and 3',
             'Domains 1, 2, and 3']
  
  q6_answer=st.radio('Which domain(s) best reflect the histogram, probability plot and decile analysis presented in Question 1 from Exercise 1?', options=q6_options, index=0, key='quest6')

  

   
  st.header("Exercise 2 - Gold Deposit - Question 2")
   
  q7_options = ['Please Select an Answer', 
             'Domain 1', 
             'Domain 2', 
             'Domain 3',
             'Domains 1 and 2',
             'Domains 1 and 3',
             'Domains 1, 2, and 3']
  
  q7_answer=st.radio('Which domain(s) best reflect the histogram, probability plot and decile analysis presented in Question 2 from Exercise 1?', options=q7_options, index=0, key='quest7')

  

   
  st.header("Exercise 2 - Gold Deposit - Question 4")
   
  q9_options = ['Please Select an Answer', 
             'Domain 1', 
             'Domain 2', 
             'Domain 3',
             'Domains 1 and 2',
             'Domains 1 and 3',
             'Domains 1, 2, and 3']
  
  q9_answer=st.radio('Which domain(s) best reflect the histogram, probability plot and decile analysis presented in Question 3 from Exercise 1?', options=q9_options, index=0, key='quest8')

  

  
  st.header("Exercise 2 - Gold Deposit - Question 4")
   
  q9_options = ['Please Select an Answer', 
             'Domain 1', 
             'Domain 2', 
             'Domain 3',
             'Domains 1 and 2',
             'Domains 1 and 3',
             'Domains 1, 2, and 3']
  
  q9_answer=st.radio('Which domain(s) best reflect the histogram, probability plot and decile analysis presented in Question 4 from Exercise 1?', options=q9_options, index=0, key='quest9')

  
 
    
  st.header("Exercise 2 - Gold Deposit - Question 5")
   
  q10_options = ['Please Select an Answer', 
             'Domain 1', 
             'Domain 2', 
             'Domain 3',
             'Domains 1 and 2',
             'Domains 1 and 3',
             'Domains 1, 2, and 3']
  
  q10_answer=st.radio('Which domain(s) best reflect the histogram, probability plot and decile analysis presented in Question 5 from Exercise 1?', options=q10_options, index=0, key='quest10')