File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 9
9
from scipy .stats import norm
10
10
import re
11
11
12
- data = pd .read_csv ('df2020.csv' )
13
- df2018 = pd .read_csv ('df2018.csv' )
14
- full_data2018 = pd .read_csv ('survey_results_sample_2018.csv' )
15
- full_data2019 = pd .read_csv ('survey_results_sample_2019.csv' )
16
- full_df2020 = pd .read_csv ('survey_results_sample_2020.csv' )
17
- df2019 = pd .read_csv ('df2019.csv' )
12
+ data = pd .read_csv ('streamlit/ df2020.csv' )
13
+ df2018 = pd .read_csv ('streamlit/ df2018.csv' )
14
+ full_data2018 = pd .read_csv ('streamlit/ survey_results_sample_2018.csv' )
15
+ full_data2019 = pd .read_csv ('streamlit/ survey_results_sample_2019.csv' )
16
+ full_df2020 = pd .read_csv ('streamlit/ survey_results_sample_2020.csv' )
17
+ df2019 = pd .read_csv ('streamlit/ df2019.csv' )
18
18
df2020 = data [(data ['SalaryUSD' ] < 200000 )]
19
19
20
20
# features for job satisfaction
21
- results = pd .read_csv ("results.csv" )
21
+ results = pd .read_csv ("streamlit/ results.csv" )
22
22
23
23
24
24
#######################################
Original file line number Diff line number Diff line change 3
3
import plotly .express as px
4
4
import functions as ff
5
5
6
- data = pd .read_csv ('df2020.csv' )
7
- df2018 = pd .read_csv ('df2018.csv' )
8
- full_data2018 = pd .read_csv ('survey_results_sample_2018.csv' )
9
- full_data2019 = pd .read_csv ('survey_results_sample_2019.csv' )
10
- full_df2020 = pd .read_csv ('survey_results_sample_2020.csv' )
11
- df2019 = pd .read_csv ('df2019.csv' )
6
+ data = pd .read_csv ('streamlit/ df2020.csv' )
7
+ df2018 = pd .read_csv ('streamlit/ df2018.csv' )
8
+ full_data2018 = pd .read_csv ('streamlit/ survey_results_sample_2018.csv' )
9
+ full_data2019 = pd .read_csv ('streamlit/ survey_results_sample_2019.csv' )
10
+ full_df2020 = pd .read_csv ('streamlit/ survey_results_sample_2020.csv' )
11
+ df2019 = pd .read_csv ('streamlit/ df2019.csv' )
12
12
df2020 = data [(data ['SalaryUSD' ] < 200000 )]
13
13
14
14
# features for job satisfaction
15
- results = pd .read_csv ("results.csv" )
15
+ results = pd .read_csv ("streamlit/ results.csv" )
16
16
17
17
# for hightest paying ds
18
18
full_data2018 .rename (columns = {'ConvertedSalary' : 'SalaryUSD' }, inplace = True )
You can’t perform that action at this time.
0 commit comments