-
Notifications
You must be signed in to change notification settings - Fork 6
Entrepreneurship EDA: Streamlit Dashboard #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
best to upload the actual csv or rewrite your code to pull this CSV directly :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great job, just a few notes here.
This is my Entrepreneurship EDA Streamlit Dashboard. Any and all feedback is helpful!
Thanks,
Pierce