_toc.yml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. # This file contains the order and numbering for all sections in the book.
  2. # _includes/sidebar.html renders this as a sidebar.
  3. #
  4. # Each entry has the following schema:
  5. #
  6. # title: Title of chapter or section
  7. # url: URL of section. Use absolute URLs to link between pages
  8. # class: (optional) a CSS class to add to this link
  9. # sections: Contains chapter's sections
  10. # not_numbered: true if the section shouldn't have a number in the sidebar
  11. # (e.g. Introduction or appendices)
  12. # divider: true if this entry should just be rendered as a horizontal divider
  13. # in the sidebar. All other values are ignored.
  14. - title: Introduction
  15. url: /chapters/intro
  16. not_numbered: true
  17. - divider: true
  18. - title: Data Science
  19. url: /chapters/01/what-is-data-science
  20. sections:
  21. - title: Introduction
  22. url: /chapters/01/1/intro
  23. subsections:
  24. - title: Computational Tools
  25. url: /chapters/01/1/1/computational-tools
  26. - title: Statistical Techniques
  27. url: /chapters/01/1/2/statistical-techniques
  28. - title: Why Data Science?
  29. url: /chapters/01/2/why-data-science
  30. - title: Plotting the Classics
  31. url: /chapters/01/3/Plotting_the_Classics
  32. subsections:
  33. - title: Literary Characters
  34. url: /chapters/01/3/1/Literary_Characters
  35. - title: Another Kind of Character
  36. url: /chapters/01/3/2/Another_Kind_Of_Character
  37. - title: Causality and Experiments
  38. url: /chapters/02/causality-and-experiments
  39. sections:
  40. - title: John Snow and the Broad Street Pump
  41. url: /chapters/02/1/observation-and-visualization-john-snow-and-the-broad-street-pump
  42. - title: "Snow\u2019s \u201CGrand Experiment\u201D"
  43. url: /chapters/02/2/snow-s-grand-experiment
  44. - title: Establishing Causality
  45. url: /chapters/02/3/establishing-causality
  46. - title: Randomization
  47. url: /chapters/02/4/randomization
  48. - title: Endnote
  49. url: /chapters/02/5/endnote
  50. - title: Programming in Python
  51. url: /chapters/03/programming-in-python
  52. sections:
  53. - title: Expressions
  54. url: /chapters/03/1/Expressions
  55. - title: Names
  56. url: /chapters/03/2/Names
  57. subsections:
  58. - title: 'Example: Growth Rates'
  59. url: /chapters/03/2/1/Growth
  60. - title: Call Expressions
  61. url: /chapters/03/3/Calls
  62. - title: Introduction to Tables
  63. url: /chapters/03/4/Introduction_to_Tables
  64. - title: Data Types
  65. url: /chapters/04/Data_Types
  66. sections:
  67. - title: Numbers
  68. url: /chapters/04/1/Numbers
  69. - title: Strings
  70. url: /chapters/04/2/Strings
  71. subsections:
  72. - title: String Methods
  73. url: /chapters/04/2/1/String_Methods
  74. - title: Comparisons
  75. url: /chapters/04/3/Comparison
  76. - title: Sequences
  77. url: /chapters/05/Sequences
  78. sections:
  79. - title: Arrays
  80. url: /chapters/05/1/Arrays
  81. - title: Ranges
  82. url: /chapters/05/2/Ranges
  83. - title: More on Arrays
  84. url: /chapters/05/3/More_on_Arrays
  85. - title: Tables
  86. url: /chapters/06/Tables
  87. sections:
  88. - title: Sorting Rows
  89. url: /chapters/06/1/Sorting_Rows
  90. - title: Selecting Rows
  91. url: /chapters/06/2/Selecting_Rows
  92. - title: 'Example: Population Trends'
  93. url: /chapters/06/3/Example_Trends_in_the_Population_of_the_United_States
  94. - title: 'Example: Trends in Gender'
  95. url: /chapters/06/4/Example_Gender_Ratio_in_the_US_Population
  96. - title: Visualization
  97. url: /chapters/07/Visualization
  98. sections:
  99. - title: Categorical Distributions
  100. url: /chapters/07/1/Visualizing_Categorical_Distributions
  101. - title: Numerical Distributions
  102. url: /chapters/07/2/Visualizing_Numerical_Distributions
  103. - title: Overlaid Graphs
  104. url: /chapters/07/3/Overlaid_Graphs
  105. - title: Functions and Tables
  106. url: /chapters/08/Functions_and_Tables
  107. sections:
  108. - title: Applying Functions to Columns
  109. url: /chapters/08/1/Applying_a_Function_to_a_Column
  110. - title: Classifying by One Variable
  111. url: /chapters/08/2/Classifying_by_One_Variable
  112. - title: Cross-Classifying
  113. url: /chapters/08/3/Cross-Classifying_by_More_than_One_Variable
  114. - title: Joining Tables by Columns
  115. url: /chapters/08/4/Joining_Tables_by_Columns
  116. - title: Bike Sharing in the Bay Area
  117. url: /chapters/08/5/Bike_Sharing_in_the_Bay_Area
  118. - title: Randomness
  119. url: /chapters/09/Randomness
  120. sections:
  121. - title: Conditional Statements
  122. url: /chapters/09/1/Conditional_Statements
  123. - title: Iteration
  124. url: /chapters/09/2/Iteration
  125. - title: Simulation
  126. url: /chapters/09/3/Simulation
  127. - title: The Monty Hall Problem
  128. url: /chapters/09/4/Monty_Hall_Problem
  129. - title: Finding Probabilities
  130. url: /chapters/09/5/Finding_Probabilities
  131. - title: Sampling and Empirical Distributions
  132. url: /chapters/10/Sampling_and_Empirical_Distributions
  133. sections:
  134. - title: Empirical Distributions
  135. url: /chapters/10/1/Empirical_Distributions
  136. - title: Sampling from a Population
  137. url: /chapters/10/2/Sampling_from_a_Population
  138. - title: Empirical Distibution of a Statistic
  139. url: /chapters/10/3/Empirical_Distribution_of_a_Statistic
  140. - title: Testing Hypotheses
  141. url: /chapters/11/Testing_Hypotheses
  142. sections:
  143. - title: Assessing Models
  144. url: /chapters/11/1/Assessing_Models
  145. - title: Multiple Categories
  146. url: /chapters/11/2/Multiple_Categories
  147. - title: Decisions and Uncertainty
  148. url: /chapters/11/3/Decisions_and_Uncertainty
  149. - title: Error Probabilities
  150. url: /chapters/11/4/Error_Probabilities
  151. - title: Comparing Two Samples
  152. url: /chapters/12/Comparing_Two_Samples
  153. sections:
  154. - title: A/B Testing
  155. url: /chapters/12/1/AB_Testing
  156. - title: Deflategate
  157. url: /chapters/12/2/Deflategate
  158. - title: Causality
  159. url: /chapters/12/3/Causality
  160. - title: Estimation
  161. url: /chapters/13/Estimation
  162. sections:
  163. - title: Percentiles
  164. url: /chapters/13/1/Percentiles
  165. - title: The Bootstrap
  166. url: /chapters/13/2/Bootstrap
  167. - title: Confidence Intervals
  168. url: /chapters/13/3/Confidence_Intervals
  169. - title: Using Confidence Intervals
  170. url: /chapters/13/4/Using_Confidence_Intervals
  171. - title: Why the Mean Matters
  172. url: /chapters/14/Why_the_Mean_Matters
  173. sections:
  174. - title: Properties of the Mean
  175. url: /chapters/14/1/Properties_of_the_Mean
  176. - title: Variability
  177. url: /chapters/14/2/Variability
  178. - title: The SD and the Normal Curve
  179. url: /chapters/14/3/SD_and_the_Normal_Curve
  180. - title: The Central Limit Theorem
  181. url: /chapters/14/4/Central_Limit_Theorem
  182. - title: The Variability of the Sample Mean
  183. url: /chapters/14/5/Variability_of_the_Sample_Mean
  184. - title: Choosing a Sample Size
  185. url: /chapters/14/6/Choosing_a_Sample_Size
  186. - title: Prediction
  187. url: /chapters/15/Prediction
  188. sections:
  189. - title: Correlation
  190. url: /chapters/15/1/Correlation
  191. - title: The Regression Line
  192. url: /chapters/15/2/Regression_Line
  193. - title: The Method of Least Squares
  194. url: /chapters/15/3/Method_of_Least_Squares
  195. - title: Least Squares Regression
  196. url: /chapters/15/4/Least_Squares_Regression
  197. - title: Visual Diagnostics
  198. url: /chapters/15/5/Visual_Diagnostics
  199. - title: Numerical Diagnostics
  200. url: /chapters/15/6/Numerical_Diagnostics
  201. - title: Inference for Regression
  202. url: /chapters/16/Inference_for_Regression
  203. sections:
  204. - title: A Regression Model
  205. url: /chapters/16/1/Regression_Model
  206. - title: Inference for the True Slope
  207. url: /chapters/16/2/Inference_for_the_True_Slope
  208. - title: Prediction Intervals
  209. url: /chapters/16/3/Prediction_Intervals
  210. - title: Classification
  211. url: /chapters/17/Classification
  212. sections:
  213. - title: Nearest Neighbors
  214. url: /chapters/17/1/Nearest_Neighbors
  215. - title: Training and Testing
  216. url: /chapters/17/2/Training_and_Testing
  217. - title: Rows of Tables
  218. url: /chapters/17/3/Rows_of_Tables
  219. - title: Implementing the Classifier
  220. url: /chapters/17/4/Implementing_the_Classifier
  221. - title: The Accuracy of the Classifier
  222. url: /chapters/17/5/Accuracy_of_the_Classifier
  223. - title: Multiple Regression
  224. url: /chapters/17/6/Multiple_Regression
  225. - title: Updating Predictions
  226. url: /chapters/18/Updating_Predictions
  227. sections:
  228. - title: A "More Likely Than Not" Binary Classifier
  229. url: /chapters/18/1/More_Likely_than_Not_Binary_Classifier
  230. - title: Making Decisions
  231. url: /chapters/18/2/Making_Decisions