美文网首页
Chapter 1. Preliminaries

Chapter 1. Preliminaries

作者: BpaNdaZ | 来源:发表于2017-05-03 13:07 被阅读0次

Essential Python Libraries

  • NumPy

  • pandas

  • matplotlib

  • SciPy


NumPy

fundamental package for scientific computing

contains a powerful N-dimensional array object, also as the primary container for data to be passed between algorithms regards to data analysis

  • reading/writing array-based data sets to disk
  • element-wise computations with array
  • mathematical operations between arrays
  • linear algebra, Fourier transform, random number generation
  • tools for integrating lower-level language can operate on the data stored in NumPy array without coping/modifying any data

pandas by Wes Mckinney

rich data structures (DataFrame, Index and Series etc.) and functions

primary data structure/object in pandas is DataFrame, which is 2-dimensional tabular and column oriented

well-suited for financial data: time series, which is exactly Wes Mckinney create pandas for

  • NumPy: array computing features
  • spreadsheet: flexible data manipulation
  • rational database, such as SQL
  • sophisticated indexing functionality: easy to reshape, slice, dice, aggregations, select subsets

matplotlib by John D. Hunter

producing plots and other 2D data visualizations


SciPy

collection of packages for scientific computation

  • scipy.integrate: integrate/differential
  • scipy.linalg: linear algebra, matrix decompositions beyond numpy.linalg
  • scipy.optimize: function optimazers/minimizers, root finding
  • scipy.signal: signal processing
  • scipy.sparse: sparse matrices, sparse linear system
  • scipy.special: wrapper around SPECFUN, a Fortran library implementing many common mathematical functions, such as the gamma function
  • scipy.stats: probability distributions, statistical tests
  • scipy.weave: tools for using inline C++ to accelerate array computations

相关文章

  • Chapter 1. Preliminaries

    Essential Python Libraries NumPy pandas matplotlib SciPy ...

  • Gensim Tutorials

    Preliminaries All the examples can be directly copied to ...

  • 施与受

    准备Preliminaries 坐下,呼吸Seatand breath 1.找一个舒适的座位,让你的背脊挺直,腿必...

  • Chapter 1. 北城

    北方的这座城市,冬天足有半年。 往往人们还没来得及享受夏日短暂的热情,气温便在毫无防备的某一天骤然下降,然后过不了...

  • chapter 1.开端

    『一粒微尘拥有着一片宇宙,这是不幸,还是伪装的幸运』 拿起眼镜布,稍微擦拭,戴上。 没人知道我有多生疏。 ...

  • 荒丘 Chapter 1.

    有的人看一眼就烦,有的人看一眼就喜欢。 初见时北京已入冬,黄景瑜裹着一身寒气,冷冽,沉默,偶尔眼神能飞出到刀来。 ...

  • Chapter 1. 介绍

    目录 1.1. Wireshark是什么? 1.1.1. 一些预期目的 1.1.2. 特性 1.1.3. 在多种网...

  • Chapter 1. Introduction

    Chapter 1.Introduction The job “software architect” appea...

  • Ch 11-12|On Writing Well (11.8)

    1. Summary Chapter 11 is a chapter of encouraging and rea...

  • 施與受冥想 文字版

    轉貼詠容的分享 施与受冥想 GIVING & TAKING ?‍♀️准备Preliminaries ✨坐下,呼吸S...

网友评论

      本文标题:Chapter 1. Preliminaries

      本文链接:https://www.haomeiwen.com/subject/vvmktxtx.html