Spaces:
Running
Running
raymondEDS
commited on
Commit
·
f91be81
1
Parent(s):
322597f
Adding RX w2 homework
Browse files- app/pages/week_2.py +13 -0
app/pages/week_2.py
CHANGED
@@ -400,6 +400,19 @@ def show():
|
|
400 |
|
401 |
**Due Date:** End of Week 2
|
402 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
else:
|
404 |
st.markdown(f"""
|
405 |
Hello **{username}**, here is your Assignment 2: Python Basics. is not yet released. Please message instructor
|
|
|
400 |
|
401 |
**Due Date:** End of Week 2
|
402 |
""")
|
403 |
+
elif username == "ruixi":
|
404 |
+
st.markdown(f"""
|
405 |
+
Hello **{username}**, here is your Assignment 2: Python Basics.
|
406 |
+
1. Import the dataset that you studied last week: https://archive.ics.uci.edu/dataset/461/drug+review+dataset+druglib+com
|
407 |
+
2. Use the notebook created here: https://colab.research.google.com/drive/1mDfN5gGdZxAiyxdxhCylInO06vrXB3dD#scrollTo=YAG0FGOjO3cm
|
408 |
+
3. Explore the dataset by answering the following questions (submit answers in this [Colab Notebook]:
|
409 |
+
- How many rows and columns are there in the dataset?
|
410 |
+
- What are the variables in the dataset?
|
411 |
+
- What is the data type of each variable?
|
412 |
+
- What is the range of each variable?
|
413 |
+
- What is the mean of each variable?
|
414 |
+
4. Think about what research question you want to answer with this dataset.
|
415 |
+
""")
|
416 |
else:
|
417 |
st.markdown(f"""
|
418 |
Hello **{username}**, here is your Assignment 2: Python Basics. is not yet released. Please message instructor
|