├── 1.Python Crash Course └── Python Crash Course.ipynb ├── 2.Intro to Pandas ├── 1.Creating a Dataframe.ipynb ├── 2.Displaying a Dataframe.ipynb ├── 3. Basic Attributes, Methods and Functions.ipynb ├── 4.Selecting One Column from a Dataframe.ipynb ├── 5.Selecting Two or More Columns from a Dataframe.ipynb ├── 6.Add New Column to a Dataframe.ipynb ├── 7.Operations on Dataframes.ipynb ├── 8.The value_counts() method.ipynb ├── 9.Sort a Dataframe with sort_values().ipynb └── StudentsPerformance.csv ├── 3.Pivot Table ├── 1.pivot() and pivot_table().ipynb ├── gdp.csv └── supermarket_sales.xlsx ├── 4.Data Visualization ├── 1.Dataset Overview and Making Pivot Table.ipynb ├── 2.Data Visualization with Pandas.ipynb ├── 3.Adding Matplotlib to Pandas.ipynb └── population_total.csv ├── Exercises ├── Intro to Pandas │ ├── Introduction to Pandas-Exercise.ipynb │ ├── Introduction to Pandas-Solution.ipynb │ └── bestsellers with categories.csv └── Merging and Concatenating DataFrames │ ├── IMDb movies.csv.zip │ ├── IMDb ratings.csv.zip │ ├── Merging and Concatenating DataFrames-Exercise.ipynb │ └── Merging and Concatenating DataFrames-Solution.ipynb ├── README.md ├── Web Scraping with Pandas.ipynb ├── loc vs iloc.ipynb └── players_20.csv /1.Python Crash Course/Python Crash Course.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/1.Python Crash Course/Python Crash Course.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/1.Creating a Dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/1.Creating a Dataframe.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/2.Displaying a Dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/2.Displaying a Dataframe.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/3. Basic Attributes, Methods and Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/3. Basic Attributes, Methods and Functions.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/4.Selecting One Column from a Dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/4.Selecting One Column from a Dataframe.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/5.Selecting Two or More Columns from a Dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/5.Selecting Two or More Columns from a Dataframe.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/6.Add New Column to a Dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/6.Add New Column to a Dataframe.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/7.Operations on Dataframes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/7.Operations on Dataframes.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/8.The value_counts() method.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/8.The value_counts() method.ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/9.Sort a Dataframe with sort_values().ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/9.Sort a Dataframe with sort_values().ipynb -------------------------------------------------------------------------------- /2.Intro to Pandas/StudentsPerformance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/2.Intro to Pandas/StudentsPerformance.csv -------------------------------------------------------------------------------- /3.Pivot Table/1.pivot() and pivot_table().ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/3.Pivot Table/1.pivot() and pivot_table().ipynb -------------------------------------------------------------------------------- /3.Pivot Table/gdp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/3.Pivot Table/gdp.csv -------------------------------------------------------------------------------- /3.Pivot Table/supermarket_sales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/3.Pivot Table/supermarket_sales.xlsx -------------------------------------------------------------------------------- /4.Data Visualization/1.Dataset Overview and Making Pivot Table.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/4.Data Visualization/1.Dataset Overview and Making Pivot Table.ipynb -------------------------------------------------------------------------------- /4.Data Visualization/2.Data Visualization with Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/4.Data Visualization/2.Data Visualization with Pandas.ipynb -------------------------------------------------------------------------------- /4.Data Visualization/3.Adding Matplotlib to Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/4.Data Visualization/3.Adding Matplotlib to Pandas.ipynb -------------------------------------------------------------------------------- /4.Data Visualization/population_total.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/4.Data Visualization/population_total.csv -------------------------------------------------------------------------------- /Exercises/Intro to Pandas/Introduction to Pandas-Exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Intro to Pandas/Introduction to Pandas-Exercise.ipynb -------------------------------------------------------------------------------- /Exercises/Intro to Pandas/Introduction to Pandas-Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Intro to Pandas/Introduction to Pandas-Solution.ipynb -------------------------------------------------------------------------------- /Exercises/Intro to Pandas/bestsellers with categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Intro to Pandas/bestsellers with categories.csv -------------------------------------------------------------------------------- /Exercises/Merging and Concatenating DataFrames/IMDb movies.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Merging and Concatenating DataFrames/IMDb movies.csv.zip -------------------------------------------------------------------------------- /Exercises/Merging and Concatenating DataFrames/IMDb ratings.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Merging and Concatenating DataFrames/IMDb ratings.csv.zip -------------------------------------------------------------------------------- /Exercises/Merging and Concatenating DataFrames/Merging and Concatenating DataFrames-Exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Merging and Concatenating DataFrames/Merging and Concatenating DataFrames-Exercise.ipynb -------------------------------------------------------------------------------- /Exercises/Merging and Concatenating DataFrames/Merging and Concatenating DataFrames-Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Exercises/Merging and Concatenating DataFrames/Merging and Concatenating DataFrames-Solution.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/README.md -------------------------------------------------------------------------------- /Web Scraping with Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/Web Scraping with Pandas.ipynb -------------------------------------------------------------------------------- /loc vs iloc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/loc vs iloc.ipynb -------------------------------------------------------------------------------- /players_20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepycoach/python-course-for-excel-users/HEAD/players_20.csv --------------------------------------------------------------------------------