1. Урок 1.00:12:15
    Introduction to the Course
  2. Урок 2.00:00:57
    About Me
  3. Урок 3.00:03:56
    MacOS - Download the Anaconda Distribution
  4. Урок 4.00:10:39
    MacOS - Install Anaconda Distribution
  5. Урок 5.00:08:35
    MacOS - Access the Terminal
  6. Урок 6.00:13:08
    MacOS - Create Conda Environment and Install Pandas
  7. Урок 7.00:12:33
    MacOS - Unpack Course Materials + The Start and Shutdown Process
  8. Урок 8.00:03:48
    Windows - Download the Anaconda Distribution
  9. Урок 9.00:05:17
    Windows - Install Anaconda Distribution
  10. Урок 10.00:10:12
    Windows - Access the Command Prompt and Update Anaconda Libraries
  11. Урок 11.00:08:50
    Windows - Unpack Course Materials + The Startdown and Shutdown Process
  12. Урок 12.00:05:15
    Intro to the Jupyter Notebook Interface
  13. Урок 13.00:07:04
    Cell Types and Cell Modes
  14. Урок 14.00:04:48
    Code Cell Execution
  15. Урок 15.00:03:07
    Popular Keyboard Shortcuts
  16. Урок 16.00:07:10
    Import Libraries into Jupyter Notebook
  17. Урок 17.00:07:06
    Python Crash Course, Part 1 - Data Types and Variables
  18. Урок 18.00:05:07
    Python Crash Course, Part 2 - Lists
  19. Урок 19.00:04:20
    Python Crash Course, Part 3 - Dictionaries
  20. Урок 20.00:04:31
    Python Crash Course, Part 4 - Operators
  21. Урок 21.00:06:03
    Python Crash Course, Part 5 - Functions
  22. Урок 22.00:02:13
    Create Jupyter Notebook for the Series Module
  23. Урок 23.00:10:33
    Create A Series Object from a Python List
  24. Урок 24.00:03:07
    Create A Series Object from a Python Dictionary
  25. Урок 25.00:07:18
    Intro to Attributes
  26. Урок 26.00:04:43
    Intro to Methods
  27. Урок 27.00:10:11
    Parameters and Arguments
  28. Урок 28.00:10:24
    Import Series with the .read_csv() Method
  29. Урок 29.00:03:43
    The .head() and .tail() Methods
  30. Урок 30.00:05:21
    Python Built-In Functions
  31. Урок 31.00:06:14
    More Series Attributes
  32. Урок 32.00:06:05
    The .sort_values() Method
  33. Урок 33.00:05:08
    The inplace Parameter
  34. Урок 34.00:04:39
    The .sort_index() Method
  35. Урок 35.00:04:01
    Python's in Keyword
  36. Урок 36.00:04:16
    Extract Series Values by Index Position
  37. Урок 37.00:07:23
    Extract Series Values by Index Label
  38. Урок 38.00:05:04
    The .get() Method on a Series
  39. Урок 39.00:05:40
    Math Methods on Series Objects
  40. Урок 40.00:03:11
    The .idxmax() and .idxmin() Methods
  41. Урок 41.00:03:40
    The .value_counts() Method
  42. Урок 42.00:06:47
    The .apply() Method
  43. Урок 43.00:06:53
    The .map() Method
  44. Урок 44.00:07:25
    Intro to DataFrames I Module
  45. Урок 45.00:07:38
    Shared Methods and Attributes between Series and DataFrames
  46. Урок 46.00:06:49
    Differences between Shared Methods
  47. Урок 47.00:07:58
    Select One Column from a DataFrame
  48. Урок 48.00:05:13
    Select Two or More Columns from a DataFrame
  49. Урок 49.00:08:04
    Add New Column to DataFrame
  50. Урок 50.00:09:07
    Broadcasting Operations
  51. Урок 51.00:03:55
    A Review of the .value_counts() Method
  52. Урок 52.00:06:42
    Drop Rows with Null Values
  53. Урок 53.00:04:25
    Fill in Null Values with the .fillna() Method
  54. Урок 54.00:10:39
    The .astype() Method
  55. Урок 55.00:05:47
    Sort a DataFrame with the .sort_values() Method, Part I
  56. Урок 56.00:04:14
    Sort a DataFrame with the .sort_values() Method, Part II
  57. Урок 57.00:03:00
    Sort DataFrame with the .sort_index() Method
  58. Урок 58.00:05:54
    Rank Values with the .rank() Method
  59. Урок 59.00:10:46
    This Module's Dataset + Memory Optimization
  60. Урок 60.00:12:58
    Filter a DataFrame Based on A Condition
  61. Урок 61.00:04:42
    Filter with More than One Condition (AND - &)
  62. Урок 62.00:08:36
    Filter with More than One Condition (OR - |)
  63. Урок 63.00:06:18
    The .isin() Method
  64. Урок 64.00:05:08
    The .isnull() and .notnull() Methods
  65. Урок 65.00:06:52
    The .between() Method
  66. Урок 66.00:09:06
    The .duplicated() Method
  67. Урок 67.00:08:17
    The .drop_duplicates() Method
  68. Урок 68.00:04:23
    The .unique() and .nunique() Methods
  69. Урок 69.00:03:24
    Intro to the DataFrames III Module + Import Dataset
  70. Урок 70.00:05:38
    The .set_index() and .reset_index() Methods
  71. Урок 71.00:09:43
    Retrieve Rows by Index Label with .loc[]
  72. Урок 72.00:06:08
    Retrieve Rows by Index Position with .iloc[]
  73. Урок 73.00:08:45
    The Catch-All .ix[] Method
  74. Урок 74.00:06:22
    Second Arguments to .loc[], .iloc[], and .ix[] Methods
  75. Урок 75.00:04:28
    Set New Values for a Specific Cell or Row
  76. Урок 76.00:09:17
    Set Multiple Values in DataFrame
  77. Урок 77.00:06:50
    Rename Index Labels or Columns in a DataFrame
  78. Урок 78.00:07:30
    Delete Rows or Columns from a DataFrame
  79. Урок 79.00:04:44
    Create Random Sample with the .sample() Method
  80. Урок 80.00:05:37
    The .nsmallest() and .nlargest() Methods
  81. Урок 81.00:05:04
    Filtering with the .where() Method
  82. Урок 82.00:09:07
    The .query() Method
  83. Урок 83.00:05:54
    A Review of the .apply() Method on Single Columns
  84. Урок 84.00:06:50
    The .apply() Method with Row Values
  85. Урок 85.00:07:06
    The .copy() Method
  86. Урок 86.00:05:56
    Intro to the Working with Text Data Module
  87. Урок 87.00:07:15
    Common String Methods - lower, upper, title, and len
  88. Урок 88.00:08:08
    The .str.replace() Method
  89. Урок 89.00:06:44
    Filtering with String Methods
  90. Урок 90.00:04:31
    More String Methods - strip, lstrip, and rstrip
  91. Урок 91.00:05:31
    String Methods on Index and Columns
  92. Урок 92.00:08:41
    Split Strings by Characters with .str.split() Method
  93. Урок 93.00:06:02
    More Practice with Splits
  94. Урок 94.00:07:01
    The expand and n Parameters of the .str.split() Method
  95. Урок 95.00:04:27
    Intro to the MultiIndex Module
  96. Урок 96.00:09:51
    Create a MultiIndex with the set_index() Method
  97. Урок 97.00:07:52
    The .get_level_values() Method
  98. Урок 98.00:03:09
    The .set_names() Method
  99. Урок 99.00:04:57
    The sort_index() Method
  100. Урок 100.00:08:33
    Extract Rows from a MultiIndex DataFrame
  101. Урок 101.00:05:49
    The .transpose() Method and MultiIndex on Column Level
  102. Урок 102.00:02:35
    The .swaplevel() Method
  103. Урок 103.00:06:01
    The .stack() Method
  104. Урок 104.00:03:39
    The .unstack() Method, Part 1
  105. Урок 105.00:06:10
    The .unstack() Method, Part 2
  106. Урок 106.00:05:10
    The .unstack() Method, Part 3
  107. Урок 107.00:06:35
    The .pivot() Method
  108. Урок 108.00:10:17
    The .pivot_table() Method
  109. Урок 109.00:06:00
    The pd.melt() Method
  110. Урок 110.00:07:43
    Intro to the Groupby Module
  111. Урок 111.00:09:34
    First Operations with groupby Object
  112. Урок 112.00:03:48
    Retrieve A Group with the .get_group() Method
  113. Урок 113.00:08:42
    Methods on the Groupby Object and DataFrame Columns
  114. Урок 114.00:04:36
    Grouping by Multiple Columns
  115. Урок 115.00:06:12
    The .agg() Method
  116. Урок 116.00:09:05
    Iterating through Groups
  117. Урок 117.00:05:48
    Intro to the Merging, Joining, and Concatenating Module
  118. Урок 118.00:05:40
    The pd.concat() Method, Part 1
  119. Урок 119.00:06:36
    The pd.concat() Method, Part 2
  120. Урок 120.00:02:04
    The .append() Method on a DataFrame
  121. Урок 121.00:09:19
    Inner Joins, Part 1
  122. Урок 122.00:09:01
    Inner Joins, Part 2
  123. Урок 123.00:12:24
    Outer Joins
  124. Урок 124.00:09:20
    Left Joins
  125. Урок 125.00:08:55
    The left_on and right_on Parameters
  126. Урок 126.00:11:03
    Merging by Indexes with the left_index and right_index Parameters
  127. Урок 127.00:03:16
    The .join() Method
  128. Урок 128.00:03:07
    The pd.merge() Method
  129. Урок 129.00:03:45
    Intro to the Working with Dates and Times Module
  130. Урок 130.00:09:32
    Review of Python's datetime Module
  131. Урок 131.00:07:16
    The pandas Timestamp Object
  132. Урок 132.00:05:24
    The pandas DateTimeIndex Object
  133. Урок 133.00:11:12
    The pd.to_datetime() Method
  134. Урок 134.00:10:23
    Create Range of Dates with the pd.date_range() Method, Part 1
  135. Урок 135.00:09:05
    Create Range of Dates with the pd.date_range() Method, Part 2
  136. Урок 136.00:07:51
    Create Range of Dates with the pd.date_range() Method, Part 3
  137. Урок 137.00:07:30
    The .dt Accessor
  138. Урок 138.00:02:31
    Install pandas-datareader Library
  139. Урок 139.00:10:43
    Import Financial Data Set with pandas_datareader Library
  140. Урок 140.00:08:02
    Selecting Rows from a DataFrame with a DateTimeIndex
  141. Урок 141.00:07:28
    Timestamp Object Attributes
  142. Урок 142.00:03:00
    The .truncate() Method
  143. Урок 143.00:12:01
    pd.DateOffset Objects
  144. Урок 144.00:14:07
    More Fun with pd.DateOffset Objects
  145. Урок 145.00:08:40
    The pandas Timedelta Object
  146. Урок 146.00:09:31
    Timedeltas in a Dataset
  147. Урок 147.00:07:18
    Intro to the Module + Fetch Panel Dataset from Google Finance
  148. Урок 148.00:07:43
    The Axes of a Panel Object
  149. Урок 149.00:05:05
    Panel Attributes
  150. Урок 150.00:04:00
    Use Bracket Notation to Extract a DataFrame from a Panel
  151. Урок 151.00:06:58
    Extracting with the .loc, .iloc, and .ix Methods
  152. Урок 152.00:04:05
    Convert Panel to a MultiIndex DataFrame (and Vice Versa)
  153. Урок 153.00:05:47
    The .major_xs() Method
  154. Урок 154.00:06:25
    The .minor_xs() Method
  155. Урок 155.00:07:43
    Transpose a Panel with the .transpose() Method
  156. Урок 156.00:04:23
    The .swapaxes() Method
  157. Урок 157.00:01:34
    Intro to the Input and Output Module
  158. Урок 158.00:03:49
    Feed pd.read_csv() Method a URL Argument
  159. Урок 159.00:05:05
    Quick Object Conversions
  160. Урок 160.00:05:49
    Export DataFrame to CSV File with the .to_csv() Method
  161. Урок 161.00:02:37
    Install xlrd and openpyxl Libraries to Read and Write Excel Files
  162. Урок 162.00:09:31
    Import Excel File into pandas
  163. Урок 163.00:08:43
    Export Excel File
  164. Урок 164.00:04:17
    Intro to Visualization Module
  165. Урок 165.00:09:14
    The .plot() Method
  166. Урок 166.00:05:21
    Modifying Aesthetics with Templates
  167. Урок 167.00:06:25
    Bar Graphs
  168. Урок 168.00:05:08
    Pie Charts
  169. Урок 169.00:06:10
    Histograms
  170. Урок 170.00:01:43
    Introduction to the Options and Settings Module
  171. Урок 171.00:06:57
    Changing pandas Options with Attributes and Dot Syntax
  172. Урок 172.00:06:14
    Changing pandas Options with Methods
  173. Урок 173.00:03:11
    The precision Option
  174. Урок 174.00:01:39
    Conclusion