Oreilly - Data Analysis with Pandas and Python - 9781788622394
Oreilly - Data Analysis with Pandas and Python
by Boris Paskhaver | Released October 2017 | ISBN: 9781788622394


Analyze data quickly and easily with Python's powerful panda library! All datasets included --- beginners welcome!About This VideoTo take your data analysis skills to the next levelIntroduces you to the popular Pandas library built on top of the Python programming language.Over the course of more than 19 hours, the author takes you on step-by-step through Pandas, from installation to visualization! We'll cover hundreds of different methods, attributes, features, and functionalities packed away inside this awesome library.In DetailWelcome to the most comprehensive Pandas course available on Udemy! An excellent choice for both beginners and experts looking to expand their knowledge on one of the most popular Python libraries in the world! Data Analysis with Pandas and Python offers 19+ hours of in-depth video tutorials on the most powerful data analysis toolkit available today. Lessons include: installing, sorting, filtering, grouping, aggregating, de-duplicating, pivoting, munging, deleting, merging, visualizing, and more! Why learn pandas? If you've spent time in a spreadsheet software like Microsoft Excel, Apple Numbers, or Google Sheets and are eager to take your data analysis skills to the next level, this course is for you! Data Analysis with Pandas and Python introduces you to the popular Pandas library built on top of the Python programming language. Pandas is a powerhouse tool that allows you to do anything and everything with colossal data sets -- analyzing, organizing, sorting, filtering, pivoting, aggregating, munging, cleaning, calculating, and more! I call it "Excel on steroids"! Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Installation and Setup
    • Introduction to the Course 00:12:15
    • Mac OS - Download the Anaconda Distribution 00:03:28
    • Mac OS - Install Anaconda Distribution 00:07:04
    • Mac OS - Access the Terminal 00:01:55
    • Mac OS - Update Anaconda Libraries 00:11:18
    • Mac OS - Unpack Course Materials + The Startdown and Shutdown Process 00:10:01
    • Windows - Download the Anaconda Distribution 00:03:47
    • Windows - Install Anaconda Distribution 00:05:16
    • Windows - Access the Command Prompt and Update Anaconda Libraries 00:10:11
    • Windows - Unpack Course Materials + The Startdown and Shutdown Process 00:08:49
    • Intro to the Jupyter Notebook Interface 00:05:14
    • Cell Types and Cell Modes 00:07:03
    • Code Cell Execution 00:04:47
    • Popular Keyboard Shortcuts 00:03:06
    • Import Libraries into Jupyter Notebook 00:07:09
    • Python Crash Course, Part 1 - Data Types and Variables 00:07:05
    • Python Crash Course, Part 2 – Lists 00:05:06
    • Python Crash Course, Part 3 – Dictionaries 00:04:19
    • Python Crash Course, Part 4 – Operators 00:04:30
    • Python Crash Course, Part 5 – Functions 00:06:02
  2. Chapter 2 : Series
    • Create Jupyter Notebook for the Series Module 00:02:12
    • Create A Series Object from a Python List 00:10:32
    • Create A Series Object from a Python Dictionary 00:03:06
    • Intro to Attributes 00:07:17
    • Intro to Methods 00:04:42
    • Parameters and Arguments 00:10:10
    • Import Series with the .read_csv() Method 00:10:23
    • The .head() and .tail() Methods 00:03:42
    • Python Built-In Functions 00:05:20
    • More Series Attributes 00:06:13
    • The .sort_values() Method 00:06:04
    • The inplace Parameter 00:05:07
    • The .sort_index() Method 00:04:38
    • Python's in Keyword 00:04:00
    • Extract Series Values by Index Position 00:04:15
    • Extract Series Values by Index Label 00:07:22
    • The .get() Method on a Series 00:05:03
    • Math Methods on Series Objects 00:05:39
    • The .idxmax() and .idxmin() Methods 00:03:10
    • The .value_counts() Method 00:03:39
    • The .apply() Method 00:06:46
    • The .map() Method 00:06:52
  3. Chapter 3 : DataFrames I
    • Intro to DataFrames I Module 00:07:24
    • Shared Methods and Attributes between Series and DataFrames 00:07:37
    • Differences between Shared Methods 00:06:48
    • Select One Column from a DataFrame 00:07:57
    • Select Two or More Columns from a DataFrame 00:05:12
    • Add New Column to DataFrame 00:08:03
    • Broadcasting Operations 00:09:07
    • A Review of the .value_counts() Method 00:03:54
    • Drop Rows with Null Values 00:06:41
    • Fill in Null Values with the .fillna() Method 00:04:25
    • The .astype() Method 00:10:38
    • Sort a DataFrame with the .sort_values() Method, Part I 00:05:46
    • Sort a DataFrame with the .sort_values() Method, Part II 00:04:13
    • Sort DataFrame with the .sort_index() Method 00:02:59
    • Rank Values with the .rank() Method 00:05:53
  4. Chapter 4 : DataFrames II
    • This Module's Dataset + Memory Optimization 00:10:45
    • Filter a DataFrame Based on A Condition 00:12:57
    • Filter with More than One Condition (AND - &) 00:04:41
    • Filter with More than One Condition (OR - |) 00:08:35
    • The .isin() Method 00:06:17
    • The .isnull() and .notnull() Methods 00:05:07
    • The .between() Method 00:06:51
    • The .duplicated() Method 00:09:05
    • The .drop_duplicates() Method 00:08:16
    • The .unique() and .nunique() Methods 00:04:22
  5. Chapter 5 : DataFrames III
    • Intro to the DataFrames III Module + Import Dataset 00:03:23
    • The .set_index() and .reset_index() Methods 00:05:37
    • Retrieve Rows by Index Label with .loc[] 00:09:43
    • Retrieve Rows by Index Label with .loc[] 00:06:07
    • The Catch-All .ix[] Method 00:08:44
    • Second Arguments to .loc[], .iloc[], and .ix[] Methods 00:06:21
    • Set New Values for a Specific Cell or Row 00:04:27
    • Set Multiple Values in DataFrame 00:09:16
    • Rename Index Labels or Columns in a DataFrame 00:06:49
    • Delete Rows or Columns from a DataFrame 00:07:29
    • Create Random Sample with the .sample() Method 00:04:43
    • The .nsmallest() and .nlargest() Methods 00:05:36
    • Filtering with the .where() Method 00:05:03
    • The .query() Method 00:09:07
    • A Review of the .apply() Method on Single Columns 00:05:53
    • The .apply() Method with Row Values 00:06:49
    • The .copy() Method 00:07:05
  6. Chapter 6 : Working with Text Data
    • Intro to the Working with Text Data Module 00:05:55
    • Common String Methods - lower, upper, title, and len 00:07:14
    • The .str.replace() Method 00:08:07
    • Filtering with String Methods 00:06:43
    • More String Methods - strip, lstrip, and rstrip 00:04:31
    • String Methods on Index and Columns 00:05:30
    • Split Strings by Characters with .str.split() Method 00:08:41
    • More Practice with Splits 00:06:01
    • The expand and n Parameters of the .str.split() Method 00:07:00
  7. Chapter 7 : MultiIndex
    • Intro to the MultiIndex Module 00:04:26
    • Create a MultiIndex with the set_index() Method 00:09:50
    • The .get_level_values() Method 00:07:52
    • The .set_names() Method 00:03:08
    • The sort_index() Method 00:04:56
    • Extract Rows from a MultiIndex DataFrame 00:08:32
    • The .transpose() Method and MultiIndex on Column Level 00:05:48
    • The .swaplevel() Method 00:02:34
    • The .stack() Method 00:06:01
    • The .unstack() Method, Part 1 00:03:38
    • The .unstack() Method, Part 2 00:06:09
    • The .unstack() Method, Part 3 00:05:09
    • The .pivot() Method 00:06:34
    • The .pivot_table() Method 00:10:16
    • The pd.melt() Method 00:05:59
  8. Chapter 8 : GroupBy
    • Intro to the Groupby Module 00:07:42
    • First Operations with groupby Object 00:09:33
    • Retrieve A Group with the .get_group() Method 00:03:47
    • Methods on the Groupby Object and DataFrame Columns 00:08:41
    • Grouping by Multiple Columns 00:04:35
    • The .agg() Method 00:06:11
    • Iterating through Groups 00:09:04
  9. Chapter 9 : Merging, Joining, and Concatenating
    • Intro to the Merging, Joining, and Concatenating Module 00:05:47
    • The pd.concat() Method, Part 1 00:05:39
    • The pd.concat() Method, Part 2 00:06:35
    • The .append() Method on a DataFrame 00:02:03
    • Inner Joins, Part 1 00:09:18
    • Inner Joins, Part 2 00:09:01
    • Outer Joins 00:12:23
    • Left Joins 00:09:19
    • The left_on and right_on Parameters 00:08:54
    • Merging by Indexes with the left_index and right_index Parameters 00:11:02
    • The .join() Method 00:03:15
    • The pd.merge() Method 00:03:06
  10. Chapter 10 : Working with Dates and Times
    • Intro to the Working with Dates and Times Module 00:03:44
    • Review of Python's datetime Module 00:09:31
    • The Pandas Timestamp Object 00:07:15
    • The Pandas DateTimeIndex Object 00:05:23
    • The pd.to_datetime() Method 00:11:11
    • Create Range of Dates with the pd.date_range() Method, Part 1 00:10:22
    • Create Range of Dates with the pd.date_range() Method, Part 2 00:09:04
    • Create Range of Dates with the pd.date_range() Method, Part 3 00:07:50
    • The .dt Accessor 00:07:29
    • Install Pandas-datareader Library 00:02:30
    • Import Financial Data Set with Pandas_datareader Library 00:10:43
    • Selecting Rows from a DataFrame with a DateTimeIndex 00:08:01
    • Timestamp Object Attributes 00:07:27
    • The .truncate() Method 00:02:59
    • pd.DateOffset Objects 00:12:00
    • More Fun with pd.DateOffset Objects 00:14:06
    • The Pandas Timedelta Object 00:08:40
    • Timedeltas in a Dataset 00:09:30
  11. Chapter 11 : Panels
    • Intro to the Module + Fetch Panel Dataset from Google Finance 00:07:17
    • The Axes of a Panel Object 00:07:42
    • Panel Attributes 00:05:04
    • Use Bracket Notation to Extract a DataFrame from a Panel 00:03:59
    • Extracting with the .loc, .iloc, and .ix Methods 00:06:57
    • Convert Panel to a MultiIndex DataFrame (and Vice Versa) 00:04:04
    • The .major_xs() Method 00:05:46
    • The .minor_xs() Method 00:06:24
    • Transpose a Panel with the .transpose() Method 00:07:42
    • The .swapaxes() Method 00:04:22
  12. Chapter 12 : Input and Output
    • Intro to the Input and Output Module 00:01:33
    • Feed pd.read_csv() Method a URL Argument 00:03:48
    • Quick Object Conversions 00:05:04
    • Export DataFrame to CSV File with the .to_csv() Method 00:05:49
    • Install xlrd and openpyxl Libraries to Read and Write Excel Files 00:02:36
    • Import Excel File into Pandas 00:09:30
    • Export Excel File 00:08:42
  13. Chapter 13 : Visualization
    • Intro to Visualization Module 00:04:16
    • The .plot() Method 00:09:13
    • Modifying Aesthetics with Templates 00:05:20
    • Bar Graphs 00:06:24
    • Pie Charts 00:05:07
    • Histograms 00:06:09
  14. Chapter 14 : Options and Settings
    • Introduction to the Options and Settings Module 00:01:42
    • Changing Pandas Options with Attributes and Dot Syntax 00:06:57
    • Changing Pandas Options with Methods 00:06:14
    • The precision Option 00:03:10
  15. Chapter 15 : Conclusion
    • Conclusion 00:01:39
  16. Show and hide more

    Oreilly - Data Analysis with Pandas and Python


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss