Spaces:
Running
Running
raymondEDS
commited on
Commit
·
f3d711b
1
Parent(s):
cb4004b
Adding homework
Browse files- app/pages/week_1.py +27 -4
app/pages/week_1.py
CHANGED
@@ -99,10 +99,33 @@ def show():
|
|
99 |
""")
|
100 |
|
101 |
# Section 3: Homework
|
102 |
-
st.
|
103 |
-
st.
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
- Provide a summary of the articles by answering the following questions:
|
107 |
- The central research question (what are they studying?)
|
108 |
- The context of the study (where is the study taking place?)
|
|
|
99 |
""")
|
100 |
|
101 |
# Section 3: Homework
|
102 |
+
username = st.session_state.get("username", "Student")
|
103 |
+
st.header(f"{username}'s Weekly Assignment")
|
104 |
+
if username == "manxiii":
|
105 |
+
st.markdown(f"""
|
106 |
+
Hello **{username}**, here is your Assignment 2: Research Basics.
|
107 |
+
1. **Article Analysis**
|
108 |
+
- Provide a summary of the articles by answering the following questions:
|
109 |
+
- The central research question (what are they studying?)
|
110 |
+
- The context of the study (where is the study taking place?)
|
111 |
+
- What type of data is being studied?
|
112 |
+
- What do the authors find?
|
113 |
+
|
114 |
+
2. **Research Questions**
|
115 |
+
- Think about what research questions you would like to answer:
|
116 |
+
- What are the similarities between the studies?
|
117 |
+
- What are the differences between the studies?
|
118 |
+
- Come up with 5 potential research questions for your own research
|
119 |
+
|
120 |
+
3. **Reference Papers**
|
121 |
+
- [Banking Analaysis](https://www.sciencedirect.com/science/article/abs/pii/S016792361400061X#preview-section-cited-by)
|
122 |
+
- [Drug Reviews](https://opus.bibliothek.uni-augsburg.de/opus4/frontdoor/deliver/index/docId/99635/file/99635.pdf)
|
123 |
+
**Due Date:** End of Week 2
|
124 |
+
""")
|
125 |
+
else:
|
126 |
+
st.markdown("""
|
127 |
+
### Tasks for this week:
|
128 |
+
1. **Article Analysis**
|
129 |
- Provide a summary of the articles by answering the following questions:
|
130 |
- The central research question (what are they studying?)
|
131 |
- The context of the study (where is the study taking place?)
|