Skip to content

Commit 5fd27b9

Browse files
authored
Merge pull request #363 from revanth1718/main
Fixed website bug
2 parents 418b68b + 2ea89c2 commit 5fd27b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

streamlit/home.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
full_data2019 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/survey_results_sample_2019.csv')
1919
full_df2020 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/survey_results_sample_2020.csv')
2020
df2019 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2019.csv')
21-
df2021 = pd.read_csv('df2021.csv')
22-
df2022 = pd.read_csv('df2022.csv')
21+
df2021 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2021.csv')
22+
df2022 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2022.csv')
2323

2424
# Filter the 2020 dataframe
2525
df2020 = df[df['SalaryUSD'] < 200000]

streamlit/main_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
full_data2019=pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/survey_results_sample_2019.csv')
1010
full_df2020 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/survey_results_sample_2020.csv')
1111
df2019 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2019.csv')
12-
df2021 = pd.read_csv('df2021.csv')
13-
df2022 = pd.read_csv('df2022.csv')
12+
df2021 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2021.csv')
13+
df2022 = pd.read_csv('https://raw.githubusercontent.com/Recode-Hive/Stackoverflow-Analysis/main/streamlit/df2022.csv')
1414
df2020 = data[(data['SalaryUSD'] < 200000)]
1515

1616
# Changes made in df2021 and df2022:

0 commit comments

Comments
 (0)