raymondEDS commited on
Commit
9f6d5cf
·
1 Parent(s): e85d425

updating week 3 content

Browse files
app/pages/__pycache__/week_3.cpython-311.pyc CHANGED
Binary files a/app/pages/__pycache__/week_3.cpython-311.pyc and b/app/pages/__pycache__/week_3.cpython-311.pyc differ
 
app/pages/week_3.py CHANGED
@@ -323,9 +323,24 @@ st.pyplot(fig)''',
323
  if st.button("Run Exercise Code"):
324
  output = capture_output(exercise_code, df)
325
  st.code(output, language="python", line_numbers=True)
326
-
327
  # Section 6: Resources
328
- st.header("6. Additional Resources")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  st.markdown("""
330
  - [EDA with Categorical Variables](https://github.com/hoffm386/eda-with-categorical-variables)
331
  - [Kaggle EDA Tutorial](https://www.kaggle.com/code/kashnitsky/topic-1-exploratory-data-analysis-with-pandas)
 
323
  if st.button("Run Exercise Code"):
324
  output = capture_output(exercise_code, df)
325
  st.code(output, language="python", line_numbers=True)
326
+
327
  # Section 6: Resources
328
+ st.header("6. Homework This Week")
329
+ st.markdown("""
330
+ 1. Please use your research dataset to complete the following tasks:
331
+ - Analyze data for any missing values
332
+ - Get basic information about the dataset (Hint use the [Dataset Information](#dataset-information) section above)
333
+ - Create visualizations to understand the data
334
+ - Hint use the [Create Your Own Visualizations](#create-your-own-visualizations) section above
335
+ - Write a report of your findings and save the graphs produced
336
+ - Your report should cover what you find interesting about the data
337
+ - Possible research questions
338
+
339
+ - Please submit your homework on Canvas
340
+ """)
341
+
342
+ # Section 7: Resources
343
+ st.header("7. Additional Resources")
344
  st.markdown("""
345
  - [EDA with Categorical Variables](https://github.com/hoffm386/eda-with-categorical-variables)
346
  - [Kaggle EDA Tutorial](https://www.kaggle.com/code/kashnitsky/topic-1-exploratory-data-analysis-with-pandas)