Entrepreneurship EDA: Streamlit Dashboard#1
Entrepreneurship EDA: Streamlit Dashboard#1piersi021 wants to merge 4 commits intoorganization-x:mainfrom
Conversation
| @@ -0,0 +1,45 @@ | |||
| # Note: In order to get your Streamlit Dashboard running, you'll need to enter the following command: streamlit run main.py | |||
There was a problem hiding this comment.
Note: you should include a requirements file and your dataset -- any thing you push to github should be runable from cloning!
Entrepreneurship EDA
Outdated
|
|
||
|
|
||
| # Imports | ||
| import time |
There was a problem hiding this comment.
did you use the time module? make sure all of your imports are used, otherwise not necessary
| @@ -0,0 +1,45 @@ | |||
| # Note: In order to get your Streamlit Dashboard running, you'll need to enter the following command: streamlit run main.py | |||
| # This will be run in the shell everytime you start the site again. If stuck, feel free to fork the tutorial Rep.lit dashboard and make changes that way. | |||
| # Dataset link: https://www.kaggle.com/namanmanchanda/entrepreneurial-competency-in-university-students | |||
There was a problem hiding this comment.
best to upload the actual csv or rewrite your code to pull this CSV directly :)
There was a problem hiding this comment.
by upload the actual csv i mean include it in your commit!
| # Title & Intro | ||
| st.title("Example EDA: Predicting Entrepreneurial Potential in Students") | ||
| st.header("For this EDA, I decided to explore the relationship between different qualities that make someone a good enrepreneur.") | ||
| # Head and Tail |
There was a problem hiding this comment.
would add spacing if you are going to section out your code with comments like this! so would add an empty line between 15 and 16, etc.
Entrepreneurship EDA
Outdated
| st.write(data.count()) | ||
| st.write("This function counts the number of values for all variables in the dataset.") | ||
| # Scatter Plot | ||
| fig_One = px.scatter(data, x = "SelfConfidence", y = "Perseverance") |
There was a problem hiding this comment.
poor naming convention. it should be fig_one. see https://en.wikipedia.org/wiki/Snake_case
mbcutts
left a comment
There was a problem hiding this comment.
great job, just a few notes here.
This is my Entrepreneurship EDA Streamlit Dashboard. Any and all feedback is helpful!
Thanks,
Pierce