-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #452 from siri-chandana-macha/siri-chandana-macha-…
…patch-1 Added Project Structure.md
- Loading branch information
Showing
1 changed file
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# Project Structure 📂 | ||
``` | ||
. | ||
├── .github | ||
│ ├── ISSUE_TEMPLATE | ||
│ │ ├── bug_report.yml | ||
│ │ ├── documentation_update.yml | ||
│ │ └── feature_request.yml | ||
│ ├── workflows | ||
│ │ ├── autocomment-iss-close.yml | ||
│ │ ├── autocomment-iss-raise.yml | ||
│ │ ├── autocomment-pr-merge.yml | ||
│ │ ├── autocomment-pr-raise.yml | ||
│ │ ├── close-old-issue.yml | ||
│ │ ├── close-old-pr.yml | ||
│ │ └── greetings.yaml | ||
│ └── PR_Template.md | ||
├── .ipynb_checkpoints | ||
├── backlog | ||
├── Data | ||
├── Job Satisfaction Analysis | ||
├── Learn.md | ||
├── opensource_analysis | ||
├── stack_overflow_programming_language_analysis | ||
├── streamlit | ||
├── .gitignore | ||
├── CODE_OF_CONDUCT.md | ||
├── data_analysis (1).py | ||
├── LICENSE | ||
├── new_analysis-2.ipynb | ||
├── nlp-analysis.ipynb | ||
├── OpenSourceEda.ipynb | ||
├── readme.md | ||
├── Stackoverflow_Survey_Analysis.ipynb | ||
├── structure.txt | ||
├── PortFolio Optimization Using Genetic Algorithm | ||
├── BestProgrammingLanguage-checkpoint.ipynb | ||
├── CommunityEngagementAnalysis_survey_results_public_2018.ipynb | ||
├── HigherEduVsSalary.ipynb | ||
├── Job_Analysis.ipynb | ||
├── portfolio_data.csv | ||
├── PreferredWaysToLearnCoding.ipynb | ||
├── results.csv | ||
├── stackoverflow_analysis_2021.ipynb | ||
├── stackoverflow_search_engine_gpt2_embeds.ipynb | ||
├── Stackoverflow_Survey_Analysis updated with xgboost.ipynb | ||
├── Stackoverflow_Survey_Analysis(1).ipynb | ||
├── Stackoverflow_Survey_Analysis-checkpoint.ipynb | ||
├── Stackoverflow_Survey_Analysis_2023.ipynb | ||
├── Stack_Overflow2018 -data visualization.ipynb | ||
├── Stack_Overflow2018- correlations and analysis.ipynb | ||
├── Stack_Overflow2018.ipynb | ||
├── Technology_Trends_Analysis__survey_results_public_2018.ipynb | ||
├── Untitled.ipynb | ||
├── Portfolio_Optimization_Using_Genetic_Algorithm.ipynb | ||
├── Images | ||
│ ├── age distribution.png | ||
│ ├── devtype distribution.png | ||
│ ├── DS_top countries.png | ||
│ ├── Ethnicity vs participation.png | ||
│ ├── gender distribution top 5.png | ||
│ ├── Geo plot.png | ||
│ ├── languages.PNG | ||
│ ├── languages_count.PNG | ||
│ ├── languages_fraction.PNG | ||
│ ├── ML_fraction of languages.png | ||
│ ├── Perception about AI.png | ||
│ ├── Popular IDE.png | ||
│ ├── popular language distribution.png | ||
│ ├── salary on edlevel.png | ||
│ ├── salary top ten countries.png | ||
│ └── top paying countries.png | ||
├── app.py | ||
├── DatasetLink.txt | ||
├── JobSatisfaction.ipynb | ||
├── requirement.txt | ||
├── Contributing.md | ||
├── PROPOSAL.md | ||
├── opensource_analysis.ipynb | ||
├── README | ||
├── requirements.txt | ||
├── survey_results_sample_2018.csv | ||
├── demovideo.mp4 | ||
├── stack_overflow.mp4 | ||
├── stack_overflow_bar_race.ipynb | ||
├── stack_overflow_dataset_programming_language.csv | ||
├── stack_overflow_programming_language.ipynb | ||
├── Visualizations | ||
├── __pycache__ | ||
│ ├── functions.cpython-311.pyc | ||
│ └── functions.cpython-312.pyc | ||
├── config.toml | ||
├── df2018.csv | ||
├── df2019.csv | ||
├── df2020.csv | ||
├── df2021.csv | ||
├── df2022.csv | ||
├── functions.py | ||
├── home.py | ||
├── main_analysis.py | ||
├── Readme.md | ||
├── requirements.txt | ||
├── results.csv | ||
├── survey_results_sample_2019.csv | ||
├── survey_results_sample_2020.csv | ||
├── JobSatisfactionAnalysis | ||
│ ├── annual-salaries.png | ||
│ ├── cloning-1.png | ||
│ ├── cloning-2.png | ||
│ ├── data-scientist-participation.png | ||
│ ├── desktop.ini | ||
│ ├── ethnicity.png | ||
│ ├── geoplot.png | ||
│ ├── income-vs-gender.png | ||
│ ├── languages-desired.png | ||
│ ├── main-interface.png | ||
│ ├── Screenshot.png | ||
│ └── terminal.png | ||
├── chart2.png | ||
├── chart3.png | ||
├── chart4.png | ||
├── chart5.png | ||
├── chart6.png | ||
└── charts1.png | ||
``` |