Oreilly - Data Science Fundamentals Part 2: Machine Learning and Statistical Analysis - 9780134778877
Oreilly - Data Science Fundamentals Part 2: Machine Learning and Statistical Analysis
by Jonathan Dinu | Released April 2019 | ISBN: 9780134778877


21+ Hours of Video InstructionData Science Fundamentals Part II teaches you the foundational concepts, theory, and techniques you need to know to become an effective data scientist. The videos present you with applied, example-driven lessons in Python and its associated ecosystem of libraries, where you get your hands dirty with real datasets and see real results. Description If nothing else, by the end of this video course you will have analyzed a number of datasets from the wild, built a handful of applications, and applied machine learning algorithms in meaningful ways to get real results. And all along the way you learn the best practices and computational techniques used by professional data scientists. You get hands-on experience with the PyData ecosystem by manipulating and modeling data. You explore and transform data with the pandas library, perform statistical analysis with SciPy and NumPy, build regression models with statsmodels, and train machine learning algorithms with scikit-learn. All throughout the course you learn to test your assumptions and models by engaging in rigorous validation. Finally, you learn how to share your results through effective data visualization. Code:https://github.com/hopelessoptimism/data-science-fundamentalsResources: http://hopelessoptimism.com/data-science-fundamentalsForum:https://gitter.im/data-science-fundamentalsData: http://insideairbnb.com/get-the-data.htmlAbout the Instructor Jonathan Dinu is an author, researcher, and most importantly educator. He is currently pursuing a Ph.D. in Computer Science at Carnegie Mellon's Human Computer Interaction Institute (HCII) where he is working to democratize machine learning and artificial intelligence through interpretable and interactive algorithms. Previously, he founded Zipfian Academy (an immersive data science training program acquired by Galvanize), has taught classes at the University of San Francisco, and has built a Data Visualization MOOC with Udacity. In addition to his professional data science experience, he has run data science trainings for a Fortune 500 company and taught workshops at Strata, PyData, and DataWeek (among others). He first discovered his love of all things data while studying Computer Science and Physics at UC Berkeley, and in a former life he worked for Alpine Data Labs developing distributed machine learning algorithms for predictive analytics on Hadoop. Jonathan has always had a passion for sharing the things he has learned in the most creative ways he can. When he is not working with students you can find him blogging about data, visualization, and education at hopelessoptimism.com or rambling on Twitter @jonathandinu. Skill LevelBeginnerWhat You Will LearnHow to get up and running with a Python data science environmentThe basics of the data science process and what each step entailsHow (and why) to perform exploratory data analysis in Python with the pandas libraryThe theory of statistical estimation to make inferences from your data and test hypotheses The fundamentals of probability and how to use scipy to work with distributions in PythonHow to build and evaluate machine learning models with scikit-learnThe basics of data visualization and how to communicate your results effectivelyThe importance of creating reproducible analyses and how to share them effectivelyWho Should Take This CourseAspiring data scientists looking to break into the field and learn the essentials necessary.Journalists, consultants, analysts, or anyone else who works with data looking to take a programmatic approach to exploring data and conducting analyses. Quantitative researchers interested in applying theory to real projects and taking a computational approach to modeling.Software engineers interested in building intelligent applications driven by machine learning.Practicing data scientists already familiar with another programming environment looking to learn how to do data science with Python.Course RequirementsBasic understanding of programming.Familiarity with Python and statistics are a plus.Lesson 7: Exploring Data—Analysis and VisualizationLesson 7 starts with a short historical diversion on the process and evolution of exploratory data analysis, to help you understand the context behind it. John Tukey, the godfather of EDA, said in the Future of Data Analysis that "Far better an approximate answer to the right question, which is often vague, than an exact answer to the wrong question, which can always be made precise." Next you use matplotlib and seaborn, two Python visualization libraries, to learn how to visually explore a single dimension with histograms and boxplots. But a single dimension can only get us so far. By using scatterplots and other charts for higher dimensional visualization you see how to compare columns of our data to look for relationships between them. The lesson finishes with a cautionary tale of when statistics lie by exploring the impact of mixed effects and Simpson's paradox. Lesson 8: Making Inferences—Statistical Estimation and EvaluationIn Lesson 8 we lay the groundwork for the methods and theory we need to make inferences from data, starting with an overview of the various approaches and techniques that are part of the rich history of statistical analysis. Next you see how to leverage computational- and sampling-based approaches to make inferences from your data. After learning the basics of hypothesis testing, one of the most used techniques in the data scientist's tool belt, you see how to use it to optimize a web application with A/B testing. All along the way you learn to appreciate the importance of uncertainty and see how to bound your reasoning with confidence intervals. And finally, the lesson finishes by discussing the age-old question of correlation versus causation, why it matters, and how to account for it in your analyses. Lesson 9: Statistical Modeling and Machine LearningIn Lesson 9 you learn how to leverage statistical models to build a powerful model to predict AirBnB listing prices and infer which listings are undervalued. It starts with a primer on probability and statistical distributions using SciPy and NumPy, including how to estimate parameters and fit distributions to data. Next you learn about the theory of regression through a hands-on application with our AirBnB data and see how to model correlations in your data. By solving for the line of best fit and seeing how to understand its coefficients you can make inferences about your data. But building a model is only one side of the coin, and if you cannot effectively evaluate how well it performs it might as well be useless. Next you learn how to evaluate a regression model, learn about what could go wrong when fitting a model, and learn to overcome these challenges. The lesson finishes by talking about the differences between and nuances of statistics, modeling, and machine learning. I provide an overview of the various types of models and algorithms used for machine learning and introduce how to leverage scikit-learn—a robust machine learning library in Python—to make predictions. About LiveLessons Video Training The LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. View all LiveLessons on InformIT at: http://www.informit.com/livelessons Show and hide more
  1. Lesson 7: Exploring Data--Analysis and Visualization
    • Topics 00:01:18
    • 7.1 Introduction to the pandas Library, Part 1 00:50:13
    • 7.1 Introduction to the pandas Library, Part 2 00:23:25
    • 7.1 Introduction to the pandas Library, Part 3 00:23:07
    • 7.2 Data Manipulation with Pandas 00:31:36
    • 7.3 Grouping and Summarizing Data with Pandas 00:16:12
    • 7.4 Exploratory versus Explanatory Visualization, Part 1 00:07:42
    • 7.4 Exploratory versus Explanatory Visualization, Part 2 00:21:18
    • 7.5 Visualizing One Dimension: Histograms and Boxplots 00:29:42
    • 7.6 Visualizing Two Dimensions: Bars, Lines, and Scatterplots 00:08:39
    • 7.7 Multivariate Visualization: Facets, Small Multiples, and Dashboards, Part 1 00:14:26
    • 7.7 Multivariate Visualization: Facets, Small Multiples, and Dashboards, Part 2 00:10:31
    • 7.8 Visualizing One Dimension: Histogram and KDE, Part 1 00:30:27
    • 7.8 Visualizing One Dimension: Histogram and KDE, Part 2 00:27:11
    • 7.9 Visualizing One Dimension: Comparing Distributions, Part 1 00:28:55
    • 7.9 Visualizing One Dimension: Comparing Distributions, Part 2 00:28:02
    • 7.9 Visualizing One Dimension: Comparing Distributions, Part 3 00:07:11
    • 7.10 Visualizing Two Dimensions: Line Charts and Scatter Plots 00:40:45
    • 7.11 Mixed Effects and Simpson's Paradox 00:15:41
  2. Lesson 8: Making Inferences--Statistical Estimation and Evaluation
    • Topics 00:01:06
    • 8.1 What Problem Is Statistics the Answer To?--Part 1 00:18:38
    • 8.1 What Problem Is Statistics the Answer To?--Part 2 00:19:23
    • 8.2 The Statistical Framework: Descriptive, Inferential, and Predictive 00:22:45
    • 8.3 Non-Parametric Estimation--The Bootstrap 00:47:53
    • 8.4 Quantifying Uncertainty--Confidence Intervals, Part 1 00:11:02
    • 8.4 Quantifying Uncertainty--Confidence Intervals, Part 2 00:24:05
    • 8.5 Correlation versus Causation, Part 1 00:25:08
    • 8.5 Correlation versus Causation, Part 2 00:23:10
    • 8.5 Correlation versus Causation, Part 3 00:12:12
    • 8.6 Evaluating Hypotheses--Significance Testing, Part 1 00:19:04
    • 8.6 Evaluating Hypotheses--Significance Testing, Part 2 00:13:06
    • 8.6 Evaluating Hypotheses--Significance Testing, Part 3 00:18:56
    • 8.6 Evaluating Hypotheses--Significance Testing, Part 4 00:30:08
    • 8.6 Evaluating Hypotheses--Significance Testing, Part 5 00:10:33
    • 8.7 Experimental Design--Assumptions and Caveats 00:25:42
    • 8.8 Review--Which Approach to Choose 00:17:13
  3. Lesson 9: Statistical Modeling and Machine Learning
    • Topics 00:01:36
    • 9.1 What, Why, and How Machines Learn 00:24:38
    • 9.2 A Machine Learning Taxonomy 00:22:27
    • 9.3 Probability and Generative Models 00:09:42
    • 9.4 Estimation with the Method of Moments 00:29:11
    • 9.5 Maximum Likelihood Estimation 00:13:46
    • 9.6 Computing the Maximum Likelihood Estimator, Part 1 00:22:12
    • 9.6 Computing the Maximum Likelihood Estimator, Part 2 00:20:49
    • 9.7 Introduction to Supervised Learning: Ordinary Least Squares Regression 00:29:19
    • 9.8 Visualizing Regression with Seaborn 00:24:06
    • 9.9 Analytical Regression with statsmodels 00:24:23
    • 9.10 Interpreting Regression Models 00:24:09
    • 9.11 Regression Three Ways - MLE, the Normal Equation, and Gradient Descent, Part 1 00:19:23
    • 9.11 Regression Three Ways - MLE, the Normal Equation, and Gradient Descent, Part 2 00:08:01
    • 9.11 Regression Three Ways - MLE, the Normal Equation, and Gradient Descent, Part 3 00:14:57
    • 9.12 Evaluating Regression 00:24:01
    • 9.13 Introduction to Classification: Logistic Regression 00:28:42
    • 9.14 Components of a Model: The Hypothesis, Cost Function, and Optimization 00:16:03
    • 9.15 Introduction to scikit-learn: Logistic Regression Appliedogistic Regression Example 00:26:27
    • 9.16 Evaluating Classification Models 00:20:01
    • 9.17 Evaluating Models with scikit-learn 00:16:06
    • 9.18 Debugging Machine Learning: Imbalanced Classes 00:30:57
    • 9.19 Model Selection--Hyperparameters and Regularization 00:22:44
  4. Show and hide more

    Oreilly - Data Science Fundamentals Part 2: Machine Learning and Statistical Analysis

    9780134778877.Data.Science.Fundamentals.Part.2.Machine.Learning.and.Statistical.Analysis.part1.OR.rar

    9780134778877.Data.Science.Fundamentals.Part.2.Machine.Learning.and.Statistical.Analysis.part2.OR.rar

    9780134778877.Data.Science.Fundamentals.Part.2.Machine.Learning.and.Statistical.Analysis.part3.OR.rar


 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