zoukankan      html  css  js  c++  java
  • numpy, pandas, scikit-learn cheat sheet (速查表)

     

    1. scikit-learn cheat sheet

    官方链接如下:http://scikit-learn.org/stable/tutorial/machine_learning_map/

    Often the hardest part of solving a machine learning problem can be finding the right estimator for the job.

    Different estimators are better suited for different types of data and different problems.

    The flowchart below is designed to give users a bit of a rough guide on how to approach problems with regard to which estimators to try on your data.

    Click on any estimator in the chart below to see its documentation.

    下面是其速查表,中文版以及英文版:

    2. numpy cheat sheet

    NumPy is the library that gives Python its ability to work with data at speed. Originally, launched in 1995 as 'Numeric,' NumPy is the foundation on which many important Python data science libraries are built, including Pandas, SciPy and scikit-learn.

    It's common when first learning NumPy to have trouble remembering all the functions and methods that you need, and while at Dataquest we advocate getting used to consulting the NumPy documentation, sometimes it's nice to have a handy reference, so we've put together this cheat sheet to help you out!

    If you're interested in learning NumPy, you can consult our NumPy tutorial blog post, or you can signup for free and start learning NumPy through our interactive Python data science course.

    Download a Printable PDF of this Cheat Sheet

    https://www.dataquest.io/blog/numpy-cheat-sheet/

    3. pandas cheat sheet

    Pandas is arguably the most important Python package for data science. Not only does it give you lots of methods and functions that make working with data easier, but it has been optimized for speed which gives you a significant advantage compared with working with numeric data using Python's built-in functions.

    It's common when first learning pandas to have trouble remembering all the functions and methods that you need, and while at Dataquest we advocate getting used to consulting the pandas documentation, sometimes it's nice to have a handy reference, so we've put together this cheat sheet to help you out!

    If you're interested in learning pandas, you can consult our two-part pandas tutorialblog post, or you can signup for free and start learning pandas through our interactive pandas for data science course.

    Download a Printable PDF of this Cheat Sheet

    https://www.dataquest.io/blog/pandas-cheat-sheet/

    速查文档已经下载、以备查阅。感谢!

  • 相关阅读:
    朴素贝叶斯
    用极大似然解释最小二乘法
    1(2).生成模型和判别模型
    1(1).有监督 VS 无监督
    python 进程与线程
    ASP.NET MVC 项目直接预览PDF文件
    有关层的垂直居中
    js的正则表达式编程,悬赏解决下面的问题
    jQuery-contextMenu使用教程
    【自己开发】Jquery的loading插件
  • 原文地址:https://www.cnblogs.com/Allen-rg/p/8922123.html
Copyright © 2011-2022 走看看