在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 机器学习-决策树python代码实现

机器学习-决策树python代码实现

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:26.88M
  • 下载次数:8
  • 浏览次数:95
  • 发布时间:2021-11-06
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
基于Python的决策树的代码实现,包含了信息增益的计算,数据集的划分以及使用递归算法进行决策树的构建,还有将决策树的绘制代码
【实例截图】
【核心代码】
16359647604203464211.rar
└── DecisionTree
├── classifierStorage.txt
├── DecisionTree.py
├── Include
├── lenses.txt
├── Lib
│   ├── site-packages
│   │   ├── cycler-0.10.0.dist-info
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── cycler.py
│   │   ├── dateutil
│   │   │   ├── _common.py
│   │   │   ├── easter.py
│   │   │   ├── __init__.py
│   │   │   ├── parser
│   │   │   │   ├── __init__.py
│   │   │   │   ├── isoparser.py
│   │   │   │   ├── _parser.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── isoparser.cpython-36.pyc
│   │   │   │   └── _parser.cpython-36.pyc
│   │   │   ├── __pycache__
│   │   │   │   ├── _common.cpython-36.pyc
│   │   │   │   ├── easter.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── relativedelta.cpython-36.pyc
│   │   │   │   ├── rrule.cpython-36.pyc
│   │   │   │   ├── tzwin.cpython-36.pyc
│   │   │   │   ├── utils.cpython-36.pyc
│   │   │   │   └── _version.cpython-36.pyc
│   │   │   ├── relativedelta.py
│   │   │   ├── rrule.py
│   │   │   ├── tz
│   │   │   │   ├── _common.py
│   │   │   │   ├── _factories.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── _common.cpython-36.pyc
│   │   │   │   │   ├── _factories.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── tz.cpython-36.pyc
│   │   │   │   │   └── win.cpython-36.pyc
│   │   │   │   ├── tz.py
│   │   │   │   └── win.py
│   │   │   ├── tzwin.py
│   │   │   ├── utils.py
│   │   │   ├── _version.py
│   │   │   └── zoneinfo
│   │   │   ├── dateutil-zoneinfo.tar.gz
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── rebuild.cpython-36.pyc
│   │   │   └── rebuild.py
│   │   ├── easy-install.pth
│   │   ├── kiwisolver-1.0.1.dist-info
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── kiwisolver.cp36-win_amd64.pyd
│   │   ├── matplotlib
│   │   │   ├── afm.py
│   │   │   ├── _animation_data.py
│   │   │   ├── animation.py
│   │   │   ├── artist.py
│   │   │   ├── axes
│   │   │   │   ├── _axes.py
│   │   │   │   ├── _base.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── _axes.cpython-36.pyc
│   │   │   │   │   ├── _base.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── _subplots.cpython-36.pyc
│   │   │   │   └── _subplots.py
│   │   │   ├── axis.py
│   │   │   ├── backend_bases.py
│   │   │   ├── backend_managers.py
│   │   │   ├── backends
│   │   │   │   ├── _backend_agg.cp36-win_amd64.pyd
│   │   │   │   ├── backend_agg.py
│   │   │   │   ├── backend_cairo.py
│   │   │   │   ├── backend_gtk3agg.py
│   │   │   │   ├── backend_gtk3cairo.py
│   │   │   │   ├── backend_gtk3.py
│   │   │   │   ├── backend_macosx.py
│   │   │   │   ├── backend_mixed.py
│   │   │   │   ├── backend_nbagg.py
│   │   │   │   ├── backend_pdf.py
│   │   │   │   ├── backend_pgf.py
│   │   │   │   ├── backend_ps.py
│   │   │   │   ├── backend_qt4agg.py
│   │   │   │   ├── backend_qt4cairo.py
│   │   │   │   ├── backend_qt4.py
│   │   │   │   ├── backend_qt5agg.py
│   │   │   │   ├── backend_qt5cairo.py
│   │   │   │   ├── backend_qt5.py
│   │   │   │   ├── backend_svg.py
│   │   │   │   ├── backend_template.py
│   │   │   │   ├── backend_tkagg.py
│   │   │   │   ├── backend_tkcairo.py
│   │   │   │   ├── _backend_tk.py
│   │   │   │   ├── backend_webagg_core.py
│   │   │   │   ├── backend_webagg.py
│   │   │   │   ├── backend_wxagg.py
│   │   │   │   ├── backend_wxcairo.py
│   │   │   │   ├── backend_wx.py
│   │   │   │   ├── _gtk3_compat.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── backend_agg.cpython-36.pyc
│   │   │   │   │   ├── backend_cairo.cpython-36.pyc
│   │   │   │   │   ├── backend_gtk3agg.cpython-36.pyc
│   │   │   │   │   ├── backend_gtk3cairo.cpython-36.pyc
│   │   │   │   │   ├── backend_gtk3.cpython-36.pyc
│   │   │   │   │   ├── backend_macosx.cpython-36.pyc
│   │   │   │   │   ├── backend_mixed.cpython-36.pyc
│   │   │   │   │   ├── backend_nbagg.cpython-36.pyc
│   │   │   │   │   ├── backend_pdf.cpython-36.pyc
│   │   │   │   │   ├── backend_pgf.cpython-36.pyc
│   │   │   │   │   ├── backend_ps.cpython-36.pyc
│   │   │   │   │   ├── backend_qt4agg.cpython-36.pyc
│   │   │   │   │   ├── backend_qt4cairo.cpython-36.pyc
│   │   │   │   │   ├── backend_qt4.cpython-36.pyc
│   │   │   │   │   ├── backend_qt5agg.cpython-36.pyc
│   │   │   │   │   ├── backend_qt5cairo.cpython-36.pyc
│   │   │   │   │   ├── backend_qt5.cpython-36.pyc
│   │   │   │   │   ├── backend_svg.cpython-36.pyc
│   │   │   │   │   ├── backend_template.cpython-36.pyc
│   │   │   │   │   ├── backend_tkagg.cpython-36.pyc
│   │   │   │   │   ├── backend_tkcairo.cpython-36.pyc
│   │   │   │   │   ├── _backend_tk.cpython-36.pyc
│   │   │   │   │   ├── backend_webagg_core.cpython-36.pyc
│   │   │   │   │   ├── backend_webagg.cpython-36.pyc
│   │   │   │   │   ├── backend_wxagg.cpython-36.pyc
│   │   │   │   │   ├── backend_wxcairo.cpython-36.pyc
│   │   │   │   │   ├── backend_wx.cpython-36.pyc
│   │   │   │   │   ├── _gtk3_compat.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── qt_compat.cpython-36.pyc
│   │   │   │   │   ├── tkagg.cpython-36.pyc
│   │   │   │   │   ├── windowing.cpython-36.pyc
│   │   │   │   │   └── wx_compat.cpython-36.pyc
│   │   │   │   ├── qt_compat.py
│   │   │   │   ├── qt_editor
│   │   │   │   │   ├── figureoptions.py
│   │   │   │   │   ├── formlayout.py
│   │   │   │   │   ├── formsubplottool.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── figureoptions.cpython-36.pyc
│   │   │   │   │   ├── formlayout.cpython-36.pyc
│   │   │   │   │   ├── formsubplottool.cpython-36.pyc
│   │   │   │   │   └── __init__.cpython-36.pyc
│   │   │   │   ├── _tkagg.cp36-win_amd64.pyd
│   │   │   │   ├── tkagg.py
│   │   │   │   ├── web_backend
│   │   │   │   │   ├── all_figures.html
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── boilerplate.css
│   │   │   │   │   │   ├── fbm.css
│   │   │   │   │   │   └── page.css
│   │   │   │   │   ├── ipython_inline_figure.html
│   │   │   │   │   ├── jquery
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   └── themes
│   │   │   │   │   │   │   └── base
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_20_666666_40x40.png
│   │   │   │   │   │   │   │   ├── ui-bg_flat_10_000000_40x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_glass_100_f6f6f6_1x400.png
│   │   │   │   │   │   │   │   ├── ui-bg_glass_100_fdf5ce_1x400.png
│   │   │   │   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   │   │   │   ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│   │   │   │   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_228ef1_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_ef8c08_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_ffd27a_256x240.png
│   │   │   │   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   │   │   │   ├── jquery-ui.css
│   │   │   │   │   │   │   └── jquery-ui.min.css
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── jquery-1.11.3.js
│   │   │   │   │   │   ├── jquery-1.11.3.min.js
│   │   │   │   │   │   ├── jquery-ui.js
│   │   │   │   │   │   └── jquery-ui.min.js
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── mpl.js
│   │   │   │   │   │   ├── mpl_tornado.js
│   │   │   │   │   │   └── nbagg_mpl.js
│   │   │   │   │   ├── nbagg_uat.ipynb
│   │   │   │   │   └── single_figure.html
│   │   │   │   ├── windowing.py
│   │   │   │   └── wx_compat.py
│   │   │   ├── backend_tools.py
│   │   │   ├── bezier.py
│   │   │   ├── blocking_input.py
│   │   │   ├── category.py
│   │   │   ├── cbook
│   │   │   │   ├── deprecation.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── deprecation.cpython-36.pyc
│   │   │   │   └── __init__.cpython-36.pyc
│   │   │   ├── _cm_listed.py
│   │   │   ├── _cm.py
│   │   │   ├── cm.py
│   │   │   ├── collections.py
│   │   │   ├── colorbar.py
│   │   │   ├── _color_data.py
│   │   │   ├── colors.py
│   │   │   ├── compat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── subprocess.cpython-36.pyc
│   │   │   │   └── subprocess.py
│   │   │   ├── concrt140.dll
│   │   │   ├── _constrained_layout.py
│   │   │   ├── container.py
│   │   │   ├── _contour.cp36-win_amd64.pyd
│   │   │   ├── contour.py
│   │   │   ├── dates.py
│   │   │   ├── docstring.py
│   │   │   ├── dviread.py
│   │   │   ├── figure.py
│   │   │   ├── fontconfig_pattern.py
│   │   │   ├── font_manager.py
│   │   │   ├── ft2font.cp36-win_amd64.pyd
│   │   │   ├── gridspec.py
│   │   │   ├── hatch.py
│   │   │   ├── _image.cp36-win_amd64.pyd
│   │   │   ├── image.py
│   │   │   ├── __init__.py
│   │   │   ├── _layoutbox.py
│   │   │   ├── legend_handler.py
│   │   │   ├── legend.py
│   │   │   ├── lines.py
│   │   │   ├── markers.py
│   │   │   ├── _mathtext_data.py
│   │   │   ├── mathtext.py
│   │   │   ├── mlab.py
│   │   │   ├── mpl-data
│   │   │   │   ├── fonts
│   │   │   │   │   ├── afm
│   │   │   │   │   │   ├── cmex10.afm
│   │   │   │   │   │   ├── cmmi10.afm
│   │   │   │   │   │   ├── cmr10.afm
│   │   │   │   │   │   ├── cmsy10.afm
│   │   │   │   │   │   ├── cmtt10.afm
│   │   │   │   │   │   ├── pagd8a.afm
│   │   │   │   │   │   ├── pagdo8a.afm
│   │   │   │   │   │   ├── pagk8a.afm
│   │   │   │   │   │   ├── pagko8a.afm
│   │   │   │   │   │   ├── pbkd8a.afm
│   │   │   │   │   │   ├── pbkdi8a.afm
│   │   │   │   │   │   ├── pbkl8a.afm
│   │   │   │   │   │   ├── pbkli8a.afm
│   │   │   │   │   │   ├── pcrb8a.afm
│   │   │   │   │   │   ├── pcrbo8a.afm
│   │   │   │   │   │   ├── pcrr8a.afm
│   │   │   │   │   │   ├── pcrro8a.afm
│   │   │   │   │   │   ├── phvb8a.afm
│   │   │   │   │   │   ├── phvb8an.afm
│   │   │   │   │   │   ├── phvbo8a.afm
│   │   │   │   │   │   ├── phvbo8an.afm
│   │   │   │   │   │   ├── phvl8a.afm
│   │   │   │   │   │   ├── phvlo8a.afm
│   │   │   │   │   │   ├── phvr8a.afm
│   │   │   │   │   │   ├── phvr8an.afm
│   │   │   │   │   │   ├── phvro8a.afm
│   │   │   │   │   │   ├── phvro8an.afm
│   │   │   │   │   │   ├── pncb8a.afm
│   │   │   │   │   │   ├── pncbi8a.afm
│   │   │   │   │   │   ├── pncr8a.afm
│   │   │   │   │   │   ├── pncri8a.afm
│   │   │   │   │   │   ├── pplb8a.afm
│   │   │   │   │   │   ├── pplbi8a.afm
│   │   │   │   │   │   ├── pplr8a.afm
│   │   │   │   │   │   ├── pplri8a.afm
│   │   │   │   │   │   ├── psyr.afm
│   │   │   │   │   │   ├── ptmb8a.afm
│   │   │   │   │   │   ├── ptmbi8a.afm
│   │   │   │   │   │   ├── ptmr8a.afm
│   │   │   │   │   │   ├── ptmri8a.afm
│   │   │   │   │   │   ├── putb8a.afm
│   │   │   │   │   │   ├── putbi8a.afm
│   │   │   │   │   │   ├── putr8a.afm
│   │   │   │   │   │   ├── putri8a.afm
│   │   │   │   │   │   ├── pzcmi8a.afm
│   │   │   │   │   │   └── pzdr.afm
│   │   │   │   │   ├── pdfcorefonts
│   │   │   │   │   │   ├── Courier.afm
│   │   │   │   │   │   ├── Courier-Bold.afm
│   │   │   │   │   │   ├── Courier-BoldOblique.afm
│   │   │   │   │   │   ├── Courier-Oblique.afm
│   │   │   │   │   │   ├── Helvetica.afm
│   │   │   │   │   │   ├── Helvetica-Bold.afm
│   │   │   │   │   │   ├── Helvetica-BoldOblique.afm
│   │   │   │   │   │   ├── Helvetica-Oblique.afm
│   │   │   │   │   │   ├── readme.txt
│   │   │   │   │   │   ├── Symbol.afm
│   │   │   │   │   │   ├── Times-Bold.afm
│   │   │   │   │   │   ├── Times-BoldItalic.afm
│   │   │   │   │   │   ├── Times-Italic.afm
│   │   │   │   │   │   ├── Times-Roman.afm
│   │   │   │   │   │   └── ZapfDingbats.afm
│   │   │   │   │   └── ttf
│   │   │   │   │   ├── cmb10.ttf
│   │   │   │   │   ├── cmex10.ttf
│   │   │   │   │   ├── cmmi10.ttf
│   │   │   │   │   ├── cmr10.ttf
│   │   │   │   │   ├── cmss10.ttf
│   │   │   │   │   ├── cmsy10.ttf
│   │   │   │   │   ├── cmtt10.ttf
│   │   │   │   │   ├── DejaVuSans-BoldOblique.ttf
│   │   │   │   │   ├── DejaVuSans-Bold.ttf
│   │   │   │   │   ├── DejaVuSansDisplay.ttf
│   │   │   │   │   ├── DejaVuSansMono-BoldOblique.ttf
│   │   │   │   │   ├── DejaVuSansMono-Bold.ttf
│   │   │   │   │   ├── DejaVuSansMono-Oblique.ttf
│   │   │   │   │   ├── DejaVuSansMono.ttf
│   │   │   │   │   ├── DejaVuSans-Oblique.ttf
│   │   │   │   │   ├── DejaVuSans.ttf
│   │   │   │   │   ├── DejaVuSerif-BoldItalic.ttf
│   │   │   │   │   ├── DejaVuSerif-Bold.ttf
│   │   │   │   │   ├── DejaVuSerifDisplay.ttf
│   │   │   │   │   ├── DejaVuSerif-Italic.ttf
│   │   │   │   │   ├── DejaVuSerif.ttf
│   │   │   │   │   ├── LICENSE_DEJAVU
│   │   │   │   │   ├── LICENSE_STIX
│   │   │   │   │   ├── local.conf
│   │   │   │   │   ├── STIXGeneralBolIta.ttf
│   │   │   │   │   ├── STIXGeneralBol.ttf
│   │   │   │   │   ├── STIXGeneralItalic.ttf
│   │   │   │   │   ├── STIXGeneral.ttf
│   │   │   │   │   ├── STIXNonUniBolIta.ttf
│   │   │   │   │   ├── STIXNonUniBol.ttf
│   │   │   │   │   ├── STIXNonUniIta.ttf
│   │   │   │   │   ├── STIXNonUni.ttf
│   │   │   │   │   ├── STIXSizFiveSymReg.ttf
│   │   │   │   │   ├── STIXSizFourSymBol.ttf
│   │   │   │   │   ├── STIXSizFourSymReg.ttf
│   │   │   │   │   ├── STIXSizOneSymBol.ttf
│   │   │   │   │   ├── STIXSizOneSymReg.ttf
│   │   │   │   │   ├── STIXSizThreeSymBol.ttf
│   │   │   │   │   ├── STIXSizThreeSymReg.ttf
│   │   │   │   │   ├── STIXSizTwoSymBol.ttf
│   │   │   │   │   └── STIXSizTwoSymReg.ttf
│   │   │   │   ├── images
│   │   │   │   │   ├── back.gif
│   │   │   │   │   ├── back_large.gif
│   │   │   │   │   ├── back_large.png
│   │   │   │   │   ├── back.pdf
│   │   │   │   │   ├── back.png
│   │   │   │   │   ├── back.svg
│   │   │   │   │   ├── filesave.gif
│   │   │   │   │   ├── filesave_large.gif
│   │   │   │   │   ├── filesave_large.png
│   │   │   │   │   ├── filesave.pdf
│   │   │   │   │   ├── filesave.png
│   │   │   │   │   ├── filesave.svg
│   │   │   │   │   ├── forward.gif
│   │   │   │   │   ├── forward_large.gif
│   │   │   │   │   ├── forward_large.png
│   │   │   │   │   ├── forward.pdf
│   │   │   │   │   ├── forward.png
│   │   │   │   │   ├── forward.svg
│   │   │   │   │   ├── hand.gif
│   │   │   │   │   ├── hand_large.gif
│   │   │   │   │   ├── hand.pdf
│   │   │   │   │   ├── hand.png
│   │   │   │   │   ├── hand.svg
│   │   │   │   │   ├── help_large.png
│   │   │   │   │   ├── help_large.ppm
│   │   │   │   │   ├── help.pdf
│   │   │   │   │   ├── help.png
│   │   │   │   │   ├── help.ppm
│   │   │   │   │   ├── help.svg
│   │   │   │   │   ├── home.gif
│   │   │   │   │   ├── home_large.gif
│   │   │   │   │   ├── home_large.png
│   │   │   │   │   ├── home.pdf
│   │   │   │   │   ├── home.png
│   │   │   │   │   ├── home.svg
│   │   │   │   │   ├── matplotlib_large.png
│   │   │   │   │   ├── matplotlib.pdf
│   │   │   │   │   ├── matplotlib.png
│   │   │   │   │   ├── matplotlib.ppm
│   │   │   │   │   ├── matplotlib.svg
│   │   │   │   │   ├── move.gif
│   │   │   │   │   ├── move_large.gif
│   │   │   │   │   ├── move_large.png
│   │   │   │   │   ├── move.pdf
│   │   │   │   │   ├── move.png
│   │   │   │   │   ├── move.svg
│   │   │   │   │   ├── qt4_editor_options_large.png
│   │   │   │   │   ├── qt4_editor_options.pdf
│   │   │   │   │   ├── qt4_editor_options.png
│   │   │   │   │   ├── qt4_editor_options.svg
│   │   │   │   │   ├── subplots.gif
│   │   │   │   │   ├── subplots_large.gif
│   │   │   │   │   ├── subplots_large.png
│   │   │   │   │   ├── subplots.pdf
│   │   │   │   │   ├── subplots.png
│   │   │   │   │   ├── subplots.svg
│   │   │   │   │   ├── zoom_to_rect.gif
│   │   │   │   │   ├── zoom_to_rect_large.gif
│   │   │   │   │   ├── zoom_to_rect_large.png
│   │   │   │   │   ├── zoom_to_rect.pdf
│   │   │   │   │   ├── zoom_to_rect.png
│   │   │   │   │   └── zoom_to_rect.svg
│   │   │   │   ├── matplotlibrc
│   │   │   │   ├── sample_data
│   │   │   │   │   ├── aapl.npz
│   │   │   │   │   ├── ada.png
│   │   │   │   │   ├── axes_grid
│   │   │   │   │   │   └── bivariate_normal.npy
│   │   │   │   │   ├── ct.raw.gz
│   │   │   │   │   ├── data_x_x2_x3.csv
│   │   │   │   │   ├── demodata.csv
│   │   │   │   │   ├── eeg.dat
│   │   │   │   │   ├── embedding_in_wx3.xrc
│   │   │   │   │   ├── goog.npz
│   │   │   │   │   ├── grace_hopper.jpg
│   │   │   │   │   ├── grace_hopper.png
│   │   │   │   │   ├── jacksboro_fault_dem.npz
│   │   │   │   │   ├── logo2.png
│   │   │   │   │   ├── membrane.dat
│   │   │   │   │   ├── Minduka_Present_Blue_Pack.png
│   │   │   │   │   ├── msft.csv
│   │   │   │   │   ├── None_vs_nearest-pdf.png
│   │   │   │   │   ├── percent_bachelors_degrees_women_usa.csv
│   │   │   │   │   ├── README.txt
│   │   │   │   │   └── s1045.ima.gz
│   │   │   │   └── stylelib
│   │   │   │   ├── bmh.mplstyle
│   │   │   │   ├── classic.mplstyle
│   │   │   │   ├── _classic_test.mplstyle
│   │   │   │   ├── dark_background.mplstyle
│   │   │   │   ├── fast.mplstyle
│   │   │   │   ├── fivethirtyeight.mplstyle
│   │   │   │   ├── ggplot.mplstyle
│   │   │   │   ├── grayscale.mplstyle
│   │   │   │   ├── seaborn-bright.mplstyle
│   │   │   │   ├── seaborn-colorblind.mplstyle
│   │   │   │   ├── seaborn-darkgrid.mplstyle
│   │   │   │   ├── seaborn-dark.mplstyle
│   │   │   │   ├── seaborn-dark-palette.mplstyle
│   │   │   │   ├── seaborn-deep.mplstyle
│   │   │   │   ├── seaborn.mplstyle
│   │   │   │   ├── seaborn-muted.mplstyle
│   │   │   │   ├── seaborn-notebook.mplstyle
│   │   │   │   ├── seaborn-paper.mplstyle
│   │   │   │   ├── seaborn-pastel.mplstyle
│   │   │   │   ├── seaborn-poster.mplstyle
│   │   │   │   ├── seaborn-talk.mplstyle
│   │   │   │   ├── seaborn-ticks.mplstyle
│   │   │   │   ├── seaborn-whitegrid.mplstyle
│   │   │   │   ├── seaborn-white.mplstyle
│   │   │   │   ├── Solarize_Light2.mplstyle
│   │   │   │   └── tableau-colorblind10.mplstyle
│   │   │   ├── msvcp140.dll
│   │   │   ├── offsetbox.py
│   │   │   ├── patches.py
│   │   │   ├── _path.cp36-win_amd64.pyd
│   │   │   ├── patheffects.py
│   │   │   ├── path.py
│   │   │   ├── _png.cp36-win_amd64.pyd
│   │   │   ├── projections
│   │   │   │   ├── geo.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── polar.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── geo.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── polar.cpython-36.pyc
│   │   │   ├── __pycache__
│   │   │   │   ├── afm.cpython-36.pyc
│   │   │   │   ├── animation.cpython-36.pyc
│   │   │   │   ├── _animation_data.cpython-36.pyc
│   │   │   │   ├── artist.cpython-36.pyc
│   │   │   │   ├── axis.cpython-36.pyc
│   │   │   │   ├── backend_bases.cpython-36.pyc
│   │   │   │   ├── backend_managers.cpython-36.pyc
│   │   │   │   ├── backend_tools.cpython-36.pyc
│   │   │   │   ├── bezier.cpython-36.pyc
│   │   │   │   ├── blocking_input.cpython-36.pyc
│   │   │   │   ├── category.cpython-36.pyc
│   │   │   │   ├── _cm.cpython-36.pyc
│   │   │   │   ├── cm.cpython-36.pyc
│   │   │   │   ├── _cm_listed.cpython-36.pyc
│   │   │   │   ├── collections.cpython-36.pyc
│   │   │   │   ├── colorbar.cpython-36.pyc
│   │   │   │   ├── _color_data.cpython-36.pyc
│   │   │   │   ├── colors.cpython-36.pyc
│   │   │   │   ├── _constrained_layout.cpython-36.pyc
│   │   │   │   ├── container.cpython-36.pyc
│   │   │   │   ├── contour.cpython-36.pyc
│   │   │   │   ├── dates.cpython-36.pyc
│   │   │   │   ├── docstring.cpython-36.pyc
│   │   │   │   ├── dviread.cpython-36.pyc
│   │   │   │   ├── figure.cpython-36.pyc
│   │   │   │   ├── fontconfig_pattern.cpython-36.pyc
│   │   │   │   ├── font_manager.cpython-36.pyc
│   │   │   │   ├── gridspec.cpython-36.pyc
│   │   │   │   ├── hatch.cpython-36.pyc
│   │   │   │   ├── image.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── _layoutbox.cpython-36.pyc
│   │   │   │   ├── legend.cpython-36.pyc
│   │   │   │   ├── legend_handler.cpython-36.pyc
│   │   │   │   ├── lines.cpython-36.pyc
│   │   │   │   ├── markers.cpython-36.pyc
│   │   │   │   ├── mathtext.cpython-36.pyc
│   │   │   │   ├── _mathtext_data.cpython-36.pyc
│   │   │   │   ├── mlab.cpython-36.pyc
│   │   │   │   ├── offsetbox.cpython-36.pyc
│   │   │   │   ├── patches.cpython-36.pyc
│   │   │   │   ├── path.cpython-36.pyc
│   │   │   │   ├── patheffects.cpython-36.pyc
│   │   │   │   ├── pylab.cpython-36.pyc
│   │   │   │   ├── _pylab_helpers.cpython-36.pyc
│   │   │   │   ├── pyplot.cpython-36.pyc
│   │   │   │   ├── quiver.cpython-36.pyc
│   │   │   │   ├── rcsetup.cpython-36.pyc
│   │   │   │   ├── sankey.cpython-36.pyc
│   │   │   │   ├── scale.cpython-36.pyc
│   │   │   │   ├── spines.cpython-36.pyc
│   │   │   │   ├── stackplot.cpython-36.pyc
│   │   │   │   ├── streamplot.cpython-36.pyc
│   │   │   │   ├── table.cpython-36.pyc
│   │   │   │   ├── texmanager.cpython-36.pyc
│   │   │   │   ├── text.cpython-36.pyc
│   │   │   │   ├── textpath.cpython-36.pyc
│   │   │   │   ├── ticker.cpython-36.pyc
│   │   │   │   ├── tight_bbox.cpython-36.pyc
│   │   │   │   ├── tight_layout.cpython-36.pyc
│   │   │   │   ├── transforms.cpython-36.pyc
│   │   │   │   ├── type1font.cpython-36.pyc
│   │   │   │   ├── units.cpython-36.pyc
│   │   │   │   ├── _version.cpython-36.pyc
│   │   │   │   └── widgets.cpython-36.pyc
│   │   │   ├── _pylab_helpers.py
│   │   │   ├── pylab.py
│   │   │   ├── pyplot.py
│   │   │   ├── _qhull.cp36-win_amd64.pyd
│   │   │   ├── quiver.py
│   │   │   ├── rcsetup.py
│   │   │   ├── sankey.py
│   │   │   ├── scale.py
│   │   │   ├── sphinxext
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mathmpl.py
│   │   │   │   ├── plot_directive.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── mathmpl.cpython-36.pyc
│   │   │   │   └── plot_directive.cpython-36.pyc
│   │   │   ├── spines.py
│   │   │   ├── stackplot.py
│   │   │   ├── streamplot.py
│   │   │   ├── style
│   │   │   │   ├── core.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── core.cpython-36.pyc
│   │   │   │   └── __init__.cpython-36.pyc
│   │   │   ├── table.py
│   │   │   ├── testing
│   │   │   │   ├── compare.py
│   │   │   │   ├── conftest.py
│   │   │   │   ├── decorators.py
│   │   │   │   ├── determinism.py
│   │   │   │   ├── disable_internet.py
│   │   │   │   ├── exceptions.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── jpl_units
│   │   │   │   │   ├── Duration.py
│   │   │   │   │   ├── EpochConverter.py
│   │   │   │   │   ├── Epoch.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── Duration.cpython-36.pyc
│   │   │   │   │   │   ├── EpochConverter.cpython-36.pyc
│   │   │   │   │   │   ├── Epoch.cpython-36.pyc
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── StrConverter.cpython-36.pyc
│   │   │   │   │   │   ├── UnitDblConverter.cpython-36.pyc
│   │   │   │   │   │   ├── UnitDbl.cpython-36.pyc
│   │   │   │   │   │   └── UnitDblFormatter.cpython-36.pyc
│   │   │   │   │   ├── StrConverter.py
│   │   │   │   │   ├── UnitDblConverter.py
│   │   │   │   │   ├── UnitDblFormatter.py
│   │   │   │   │   └── UnitDbl.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── compare.cpython-36.pyc
│   │   │   │   ├── conftest.cpython-36.pyc
│   │   │   │   ├── decorators.cpython-36.pyc
│   │   │   │   ├── determinism.cpython-36.pyc
│   │   │   │   ├── disable_internet.cpython-36.pyc
│   │   │   │   ├── exceptions.cpython-36.pyc
│   │   │   │   └── __init__.cpython-36.pyc
│   │   │   ├── texmanager.py
│   │   │   ├── textpath.py
│   │   │   ├── text.py
│   │   │   ├── ticker.py
│   │   │   ├── tight_bbox.py
│   │   │   ├── tight_layout.py
│   │   │   ├── transforms.py
│   │   │   ├── tri
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── triangulation.cpython-36.pyc
│   │   │   │   │   ├── tricontour.cpython-36.pyc
│   │   │   │   │   ├── trifinder.cpython-36.pyc
│   │   │   │   │   ├── triinterpolate.cpython-36.pyc
│   │   │   │   │   ├── tripcolor.cpython-36.pyc
│   │   │   │   │   ├── triplot.cpython-36.pyc
│   │   │   │   │   ├── trirefine.cpython-36.pyc
│   │   │   │   │   └── tritools.cpython-36.pyc
│   │   │   │   ├── triangulation.py
│   │   │   │   ├── tricontour.py
│   │   │   │   ├── trifinder.py
│   │   │   │   ├── triinterpolate.py
│   │   │   │   ├── tripcolor.py
│   │   │   │   ├── triplot.py
│   │   │   │   ├── trirefine.py
│   │   │   │   └── tritools.py
│   │   │   ├── _tri.cp36-win_amd64.pyd
│   │   │   ├── ttconv.cp36-win_amd64.pyd
│   │   │   ├── type1font.py
│   │   │   ├── units.py
│   │   │   ├── _version.py
│   │   │   ├── widgets.py
│   │   │   └── _windowing.cp36-win_amd64.pyd
│   │   ├── matplotlib-3.0.2.dist-info
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── namespace_packages.txt
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── matplotlib-3.0.2-py3.6-nspkg.pth
│   │   ├── mpl_toolkits
│   │   │   ├── axes_grid
│   │   │   │   ├── anchored_artists.py
│   │   │   │   ├── angle_helper.py
│   │   │   │   ├── axes_divider.py
│   │   │   │   ├── axes_grid.py
│   │   │   │   ├── axes_rgb.py
│   │   │   │   ├── axes_size.py
│   │   │   │   ├── axis_artist.py
│   │   │   │   ├── axislines.py
│   │   │   │   ├── axisline_style.py
│   │   │   │   ├── clip_path.py
│   │   │   │   ├── colorbar.py
│   │   │   │   ├── floating_axes.py
│   │   │   │   ├── grid_finder.py
│   │   │   │   ├── grid_helper_curvelinear.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── inset_locator.py
│   │   │   │   ├── parasite_axes.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── anchored_artists.cpython-36.pyc
│   │   │   │   ├── angle_helper.cpython-36.pyc
│   │   │   │   ├── axes_divider.cpython-36.pyc
│   │   │   │   ├── axes_grid.cpython-36.pyc
│   │   │   │   ├── axes_rgb.cpython-36.pyc
│   │   │   │   ├── axes_size.cpython-36.pyc
│   │   │   │   ├── axis_artist.cpython-36.pyc
│   │   │   │   ├── axislines.cpython-36.pyc
│   │   │   │   ├── axisline_style.cpython-36.pyc
│   │   │   │   ├── clip_path.cpython-36.pyc
│   │   │   │   ├── colorbar.cpython-36.pyc
│   │   │   │   ├── floating_axes.cpython-36.pyc
│   │   │   │   ├── grid_finder.cpython-36.pyc
│   │   │   │   ├── grid_helper_curvelinear.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── inset_locator.cpython-36.pyc
│   │   │   │   └── parasite_axes.cpython-36.pyc
│   │   │   ├── axes_grid1
│   │   │   │   ├── anchored_artists.py
│   │   │   │   ├── axes_divider.py
│   │   │   │   ├── axes_grid.py
│   │   │   │   ├── axes_rgb.py
│   │   │   │   ├── axes_size.py
│   │   │   │   ├── colorbar.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── inset_locator.py
│   │   │   │   ├── mpl_axes.py
│   │   │   │   ├── parasite_axes.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── anchored_artists.cpython-36.pyc
│   │   │   │   ├── axes_divider.cpython-36.pyc
│   │   │   │   ├── axes_grid.cpython-36.pyc
│   │   │   │   ├── axes_rgb.cpython-36.pyc
│   │   │   │   ├── axes_size.cpython-36.pyc
│   │   │   │   ├── colorbar.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── inset_locator.cpython-36.pyc
│   │   │   │   ├── mpl_axes.cpython-36.pyc
│   │   │   │   └── parasite_axes.cpython-36.pyc
│   │   │   ├── axisartist
│   │   │   │   ├── angle_helper.py
│   │   │   │   ├── axes_divider.py
│   │   │   │   ├── axes_grid.py
│   │   │   │   ├── axes_rgb.py
│   │   │   │   ├── axis_artist.py
│   │   │   │   ├── axislines.py
│   │   │   │   ├── axisline_style.py
│   │   │   │   ├── clip_path.py
│   │   │   │   ├── floating_axes.py
│   │   │   │   ├── grid_finder.py
│   │   │   │   ├── grid_helper_curvelinear.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── parasite_axes.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── angle_helper.cpython-36.pyc
│   │   │   │   ├── axes_divider.cpython-36.pyc
│   │   │   │   ├── axes_grid.cpython-36.pyc
│   │   │   │   ├── axes_rgb.cpython-36.pyc
│   │   │   │   ├── axis_artist.cpython-36.pyc
│   │   │   │   ├── axislines.cpython-36.pyc
│   │   │   │   ├── axisline_style.cpython-36.pyc
│   │   │   │   ├── clip_path.cpython-36.pyc
│   │   │   │   ├── floating_axes.cpython-36.pyc
│   │   │   │   ├── grid_finder.cpython-36.pyc
│   │   │   │   ├── grid_helper_curvelinear.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── parasite_axes.cpython-36.pyc
│   │   │   └── mplot3d
│   │   │   ├── art3d.py
│   │   │   ├── axes3d.py
│   │   │   ├── axis3d.py
│   │   │   ├── __init__.py
│   │   │   ├── proj3d.py
│   │   │   └── __pycache__
│   │   │   ├── art3d.cpython-36.pyc
│   │   │   ├── axes3d.cpython-36.pyc
│   │   │   ├── axis3d.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── proj3d.cpython-36.pyc
│   │   ├── numpy
│   │   │   ├── add_newdocs.py
│   │   │   ├── compat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── _inspect.py
│   │   │   │   ├── py3k.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── _inspect.cpython-36.pyc
│   │   │   │   │   ├── py3k.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── test_compat.cpython-36.pyc
│   │   │   │   └── test_compat.py
│   │   │   ├── __config__.py
│   │   │   ├── conftest.py
│   │   │   ├── core
│   │   │   │   ├── arrayprint.py
│   │   │   │   ├── cversions.py
│   │   │   │   ├── defchararray.py
│   │   │   │   ├── _dummy.cp36-win_amd64.pyd
│   │   │   │   ├── einsumfunc.py
│   │   │   │   ├── fromnumeric.py
│   │   │   │   ├── function_base.py
│   │   │   │   ├── generate_numpy_api.py
│   │   │   │   ├── getlimits.py
│   │   │   │   ├── include
│   │   │   │   │   └── numpy
│   │   │   │   │   ├── arrayobject.h
│   │   │   │   │   ├── arrayscalars.h
│   │   │   │   │   ├── halffloat.h
│   │   │   │   │   ├── __multiarray_api.h
│   │   │   │   │   ├── multiarray_api.txt
│   │   │   │   │   ├── ndarrayobject.h
│   │   │   │   │   ├── ndarraytypes.h
│   │   │   │   │   ├── _neighborhood_iterator_imp.h
│   │   │   │   │   ├── noprefix.h
│   │   │   │   │   ├── npy_1_7_deprecated_api.h
│   │   │   │   │   ├── npy_3kcompat.h
│   │   │   │   │   ├── npy_common.h
│   │   │   │   │   ├── npy_cpu.h
│   │   │   │   │   ├── npy_endian.h
│   │   │   │   │   ├── npy_interrupt.h
│   │   │   │   │   ├── npy_math.h
│   │   │   │   │   ├── npy_no_deprecated_api.h
│   │   │   │   │   ├── npy_os.h
│   │   │   │   │   ├── _numpyconfig.h
│   │   │   │   │   ├── numpyconfig.h
│   │   │   │   │   ├── old_defines.h
│   │   │   │   │   ├── oldnumeric.h
│   │   │   │   │   ├── __ufunc_api.h
│   │   │   │   │   ├── ufunc_api.txt
│   │   │   │   │   ├── ufuncobject.h
│   │   │   │   │   └── utils.h
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── _internal.py
│   │   │   │   ├── lib
│   │   │   │   │   ├── npymath.lib
│   │   │   │   │   └── npy-pkg-config
│   │   │   │   │   ├── mlib.ini
│   │   │   │   │   └── npymath.ini
│   │   │   │   ├── machar.py
│   │   │   │   ├── memmap.py
│   │   │   │   ├── _methods.py
│   │   │   │   ├── multiarray.cp36-win_amd64.pyd
│   │   │   │   ├── _multiarray_tests.cp36-win_amd64.pyd
│   │   │   │   ├── numeric.py
│   │   │   │   ├── numerictypes.py
│   │   │   │   ├── _operand_flag_tests.cp36-win_amd64.pyd
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── arrayprint.cpython-36.pyc
│   │   │   │   │   ├── cversions.cpython-36.pyc
│   │   │   │   │   ├── defchararray.cpython-36.pyc
│   │   │   │   │   ├── einsumfunc.cpython-36.pyc
│   │   │   │   │   ├── fromnumeric.cpython-36.pyc
│   │   │   │   │   ├── function_base.cpython-36.pyc
│   │   │   │   │   ├── generate_numpy_api.cpython-36.pyc
│   │   │   │   │   ├── getlimits.cpython-36.pyc
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── _internal.cpython-36.pyc
│   │   │   │   │   ├── machar.cpython-36.pyc
│   │   │   │   │   ├── memmap.cpython-36.pyc
│   │   │   │   │   ├── _methods.cpython-36.pyc
│   │   │   │   │   ├── numeric.cpython-36.pyc
│   │   │   │   │   ├── numerictypes.cpython-36.pyc
│   │   │   │   │   ├── records.cpython-36.pyc
│   │   │   │   │   ├── setup_common.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   ├── shape_base.cpython-36.pyc
│   │   │   │   │   └── umath_tests.cpython-36.pyc
│   │   │   │   ├── _rational_tests.cp36-win_amd64.pyd
│   │   │   │   ├── records.py
│   │   │   │   ├── setup_common.py
│   │   │   │   ├── setup.py
│   │   │   │   ├── shape_base.py
│   │   │   │   ├── _struct_ufunc_tests.cp36-win_amd64.pyd
│   │   │   │   ├── tests
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── astype_copy.pkl
│   │   │   │   │   │   └── recarray_from_file.fits
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── _locales.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── _locales.cpython-36.pyc
│   │   │   │   │   │   ├── test_abc.cpython-36.pyc
│   │   │   │   │   │   ├── test_api.cpython-36.pyc
│   │   │   │   │   │   ├── test_arrayprint.cpython-36.pyc
│   │   │   │   │   │   ├── test_datetime.cpython-36.pyc
│   │   │   │   │   │   ├── test_defchararray.cpython-36.pyc
│   │   │   │   │   │   ├── test_deprecations.cpython-36.pyc
│   │   │   │   │   │   ├── test_dtype.cpython-36.pyc
│   │   │   │   │   │   ├── test_einsum.cpython-36.pyc
│   │   │   │   │   │   ├── test_errstate.cpython-36.pyc
│   │   │   │   │   │   ├── test_extint128.cpython-36.pyc
│   │   │   │   │   │   ├── test_function_base.cpython-36.pyc
│   │   │   │   │   │   ├── test_getlimits.cpython-36.pyc
│   │   │   │   │   │   ├── test_half.cpython-36.pyc
│   │   │   │   │   │   ├── test_indexerrors.cpython-36.pyc
│   │   │   │   │   │   ├── test_indexing.cpython-36.pyc
│   │   │   │   │   │   ├── test_item_selection.cpython-36.pyc
│   │   │   │   │   │   ├── test_longdouble.cpython-36.pyc
│   │   │   │   │   │   ├── test_machar.cpython-36.pyc
│   │   │   │   │   │   ├── test_memmap.cpython-36.pyc
│   │   │   │   │   │   ├── test_mem_overlap.cpython-36.pyc
│   │   │   │   │   │   ├── test_multiarray.cpython-36.pyc
│   │   │   │   │   │   ├── test_nditer.cpython-36.pyc
│   │   │   │   │   │   ├── test_numeric.cpython-36.pyc
│   │   │   │   │   │   ├── test_numerictypes.cpython-36.pyc
│   │   │   │   │   │   ├── test_print.cpython-36.pyc
│   │   │   │   │   │   ├── test_records.cpython-36.pyc
│   │   │   │   │   │   ├── test_regression.cpython-36.pyc
│   │   │   │   │   │   ├── test_scalarbuffer.cpython-36.pyc
│   │   │   │   │   │   ├── test_scalar_ctors.cpython-36.pyc
│   │   │   │   │   │   ├── test_scalarinherit.cpython-36.pyc
│   │   │   │   │   │   ├── test_scalarmath.cpython-36.pyc
│   │   │   │   │   │   ├── test_scalarprint.cpython-36.pyc
│   │   │   │   │   │   ├── test_shape_base.cpython-36.pyc
│   │   │   │   │   │   ├── test_ufunc.cpython-36.pyc
│   │   │   │   │   │   ├── test_umath_complex.cpython-36.pyc
│   │   │   │   │   │   ├── test_umath.cpython-36.pyc
│   │   │   │   │   │   └── test_unicode.cpython-36.pyc
│   │   │   │   │   ├── test_abc.py
│   │   │   │   │   ├── test_api.py
│   │   │   │   │   ├── test_arrayprint.py
│   │   │   │   │   ├── test_datetime.py
│   │   │   │   │   ├── test_defchararray.py
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_dtype.py
│   │   │   │   │   ├── test_einsum.py
│   │   │   │   │   ├── test_errstate.py
│   │   │   │   │   ├── test_extint128.py
│   │   │   │   │   ├── test_function_base.py
│   │   │   │   │   ├── test_getlimits.py
│   │   │   │   │   ├── test_half.py
│   │   │   │   │   ├── test_indexerrors.py
│   │   │   │   │   ├── test_indexing.py
│   │   │   │   │   ├── test_item_selection.py
│   │   │   │   │   ├── test_longdouble.py
│   │   │   │   │   ├── test_machar.py
│   │   │   │   │   ├── test_memmap.py
│   │   │   │   │   ├── test_mem_overlap.py
│   │   │   │   │   ├── test_multiarray.py
│   │   │   │   │   ├── test_nditer.py
│   │   │   │   │   ├── test_numeric.py
│   │   │   │   │   ├── test_numerictypes.py
│   │   │   │   │   ├── test_print.py
│   │   │   │   │   ├── test_records.py
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_scalarbuffer.py
│   │   │   │   │   ├── test_scalar_ctors.py
│   │   │   │   │   ├── test_scalarinherit.py
│   │   │   │   │   ├── test_scalarmath.py
│   │   │   │   │   ├── test_scalarprint.py
│   │   │   │   │   ├── test_shape_base.py
│   │   │   │   │   ├── test_ufunc.py
│   │   │   │   │   ├── test_umath_complex.py
│   │   │   │   │   ├── test_umath.py
│   │   │   │   │   └── test_unicode.py
│   │   │   │   ├── umath.cp36-win_amd64.pyd
│   │   │   │   ├── _umath_tests.cp36-win_amd64.pyd
│   │   │   │   └── umath_tests.py
│   │   │   ├── ctypeslib.py
│   │   │   ├── _distributor_init.py
│   │   │   ├── distutils
│   │   │   │   ├── ccompiler.py
│   │   │   │   ├── command
│   │   │   │   │   ├── autodist.py
│   │   │   │   │   ├── bdist_rpm.py
│   │   │   │   │   ├── build_clib.py
│   │   │   │   │   ├── build_ext.py
│   │   │   │   │   ├── build.py
│   │   │   │   │   ├── build_py.py
│   │   │   │   │   ├── build_scripts.py
│   │   │   │   │   ├── build_src.py
│   │   │   │   │   ├── config_compiler.py
│   │   │   │   │   ├── config.py
│   │   │   │   │   ├── develop.py
│   │   │   │   │   ├── egg_info.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── install_clib.py
│   │   │   │   │   ├── install_data.py
│   │   │   │   │   ├── install_headers.py
│   │   │   │   │   ├── install.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── autodist.cpython-36.pyc
│   │   │   │   │   │   ├── bdist_rpm.cpython-36.pyc
│   │   │   │   │   │   ├── build_clib.cpython-36.pyc
│   │   │   │   │   │   ├── build.cpython-36.pyc
│   │   │   │   │   │   ├── build_ext.cpython-36.pyc
│   │   │   │   │   │   ├── build_py.cpython-36.pyc
│   │   │   │   │   │   ├── build_scripts.cpython-36.pyc
│   │   │   │   │   │   ├── build_src.cpython-36.pyc
│   │   │   │   │   │   ├── config_compiler.cpython-36.pyc
│   │   │   │   │   │   ├── config.cpython-36.pyc
│   │   │   │   │   │   ├── develop.cpython-36.pyc
│   │   │   │   │   │   ├── egg_info.cpython-36.pyc
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── install_clib.cpython-36.pyc
│   │   │   │   │   │   ├── install.cpython-36.pyc
│   │   │   │   │   │   ├── install_data.cpython-36.pyc
│   │   │   │   │   │   ├── install_headers.cpython-36.pyc
│   │   │   │   │   │   └── sdist.cpython-36.pyc
│   │   │   │   │   └── sdist.py
│   │   │   │   ├── compat.py
│   │   │   │   ├── __config__.py
│   │   │   │   ├── conv_template.py
│   │   │   │   ├── core.py
│   │   │   │   ├── cpuinfo.py
│   │   │   │   ├── environment.py
│   │   │   │   ├── exec_command.py
│   │   │   │   ├── extension.py
│   │   │   │   ├── fcompiler
│   │   │   │   │   ├── absoft.py
│   │   │   │   │   ├── compaq.py
│   │   │   │   │   ├── g95.py
│   │   │   │   │   ├── gnu.py
│   │   │   │   │   ├── hpux.py
│   │   │   │   │   ├── ibm.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── intel.py
│   │   │   │   │   ├── lahey.py
│   │   │   │   │   ├── mips.py
│   │   │   │   │   ├── nag.py
│   │   │   │   │   ├── none.py
│   │   │   │   │   ├── pathf95.py
│   │   │   │   │   ├── pg.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── absoft.cpython-36.pyc
│   │   │   │   │   │   ├── compaq.cpython-36.pyc
│   │   │   │   │   │   ├── g95.cpython-36.pyc
│   │   │   │   │   │   ├── gnu.cpython-36.pyc
│   │   │   │   │   │   ├── hpux.cpython-36.pyc
│   │   │   │   │   │   ├── ibm.cpython-36.pyc
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── intel.cpython-36.pyc
│   │   │   │   │   │   ├── lahey.cpython-36.pyc
│   │   │   │   │   │   ├── mips.cpython-36.pyc
│   │   │   │   │   │   ├── nag.cpython-36.pyc
│   │   │   │   │   │   ├── none.cpython-36.pyc
│   │   │   │   │   │   ├── pathf95.cpython-36.pyc
│   │   │   │   │   │   ├── pg.cpython-36.pyc
│   │   │   │   │   │   ├── sun.cpython-36.pyc
│   │   │   │   │   │   └── vast.cpython-36.pyc
│   │   │   │   │   ├── sun.py
│   │   │   │   │   └── vast.py
│   │   │   │   ├── from_template.py
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── intelccompiler.py
│   │   │   │   ├── lib2def.py
│   │   │   │   ├── line_endings.py
│   │   │   │   ├── log.py
│   │   │   │   ├── mingw
│   │   │   │   │   └── gfortran_vs2003_hack.c
│   │   │   │   ├── mingw32ccompiler.py
│   │   │   │   ├── misc_util.py
│   │   │   │   ├── msvc9compiler.py
│   │   │   │   ├── msvccompiler.py
│   │   │   │   ├── npy_pkg_config.py
│   │   │   │   ├── numpy_distribution.py
│   │   │   │   ├── pathccompiler.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── ccompiler.cpython-36.pyc
│   │   │   │   │   ├── compat.cpython-36.pyc
│   │   │   │   │   ├── __config__.cpython-36.pyc
│   │   │   │   │   ├── conv_template.cpython-36.pyc
│   │   │   │   │   ├── core.cpython-36.pyc
│   │   │   │   │   ├── cpuinfo.cpython-36.pyc
│   │   │   │   │   ├── environment.cpython-36.pyc
│   │   │   │   │   ├── exec_command.cpython-36.pyc
│   │   │   │   │   ├── extension.cpython-36.pyc
│   │   │   │   │   ├── from_template.cpython-36.pyc
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── intelccompiler.cpython-36.pyc
│   │   │   │   │   ├── lib2def.cpython-36.pyc
│   │   │   │   │   ├── line_endings.cpython-36.pyc
│   │   │   │   │   ├── log.cpython-36.pyc
│   │   │   │   │   ├── mingw32ccompiler.cpython-36.pyc
│   │   │   │   │   ├── misc_util.cpython-36.pyc
│   │   │   │   │   ├── msvc9compiler.cpython-36.pyc
│   │   │   │   │   ├── msvccompiler.cpython-36.pyc
│   │   │   │   │   ├── npy_pkg_config.cpython-36.pyc
│   │   │   │   │   ├── numpy_distribution.cpython-36.pyc
│   │   │   │   │   ├── pathccompiler.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   ├── system_info.cpython-36.pyc
│   │   │   │   │   ├── unixccompiler.cpython-36.pyc
│   │   │   │   │   └── __version__.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── system_info.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_exec_command.cpython-36.pyc
│   │   │   │   │   │   ├── test_fcompiler_gnu.cpython-36.pyc
│   │   │   │   │   │   ├── test_fcompiler_intel.cpython-36.pyc
│   │   │   │   │   │   ├── test_fcompiler_nagfor.cpython-36.pyc
│   │   │   │   │   │   ├── test_from_template.cpython-36.pyc
│   │   │   │   │   │   ├── test_misc_util.cpython-36.pyc
│   │   │   │   │   │   ├── test_npy_pkg_config.cpython-36.pyc
│   │   │   │   │   │   └── test_system_info.cpython-36.pyc
│   │   │   │   │   ├── test_exec_command.py
│   │   │   │   │   ├── test_fcompiler_gnu.py
│   │   │   │   │   ├── test_fcompiler_intel.py
│   │   │   │   │   ├── test_fcompiler_nagfor.py
│   │   │   │   │   ├── test_from_template.py
│   │   │   │   │   ├── test_misc_util.py
│   │   │   │   │   ├── test_npy_pkg_config.py
│   │   │   │   │   └── test_system_info.py
│   │   │   │   ├── unixccompiler.py
│   │   │   │   └── __version__.py
│   │   │   ├── doc
│   │   │   │   ├── basics.py
│   │   │   │   ├── broadcasting.py
│   │   │   │   ├── byteswapping.py
│   │   │   │   ├── constants.py
│   │   │   │   ├── creation.py
│   │   │   │   ├── glossary.py
│   │   │   │   ├── indexing.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── internals.py
│   │   │   │   ├── misc.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── basics.cpython-36.pyc
│   │   │   │   │   ├── broadcasting.cpython-36.pyc
│   │   │   │   │   ├── byteswapping.cpython-36.pyc
│   │   │   │   │   ├── constants.cpython-36.pyc
│   │   │   │   │   ├── creation.cpython-36.pyc
│   │   │   │   │   ├── glossary.cpython-36.pyc
│   │   │   │   │   ├── indexing.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── internals.cpython-36.pyc
│   │   │   │   │   ├── misc.cpython-36.pyc
│   │   │   │   │   ├── structured_arrays.cpython-36.pyc
│   │   │   │   │   ├── subclassing.cpython-36.pyc
│   │   │   │   │   └── ufuncs.cpython-36.pyc
│   │   │   │   ├── structured_arrays.py
│   │   │   │   ├── subclassing.py
│   │   │   │   └── ufuncs.py
│   │   │   ├── dual.py
│   │   │   ├── f2py
│   │   │   │   ├── auxfuncs.py
│   │   │   │   ├── capi_maps.py
│   │   │   │   ├── cb_rules.py
│   │   │   │   ├── cfuncs.py
│   │   │   │   ├── common_rules.py
│   │   │   │   ├── crackfortran.py
│   │   │   │   ├── diagnose.py
│   │   │   │   ├── f2py2e.py
│   │   │   │   ├── f2py_testing.py
│   │   │   │   ├── f90mod_rules.py
│   │   │   │   ├── func2subr.py
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __main__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── auxfuncs.cpython-36.pyc
│   │   │   │   │   ├── capi_maps.cpython-36.pyc
│   │   │   │   │   ├── cb_rules.cpython-36.pyc
│   │   │   │   │   ├── cfuncs.cpython-36.pyc
│   │   │   │   │   ├── common_rules.cpython-36.pyc
│   │   │   │   │   ├── crackfortran.cpython-36.pyc
│   │   │   │   │   ├── diagnose.cpython-36.pyc
│   │   │   │   │   ├── f2py2e.cpython-36.pyc
│   │   │   │   │   ├── f2py_testing.cpython-36.pyc
│   │   │   │   │   ├── f90mod_rules.cpython-36.pyc
│   │   │   │   │   ├── func2subr.cpython-36.pyc
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── __main__.cpython-36.pyc
│   │   │   │   │   ├── rules.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   ├── use_rules.cpython-36.pyc
│   │   │   │   │   └── __version__.cpython-36.pyc
│   │   │   │   ├── rules.py
│   │   │   │   ├── setup.py
│   │   │   │   ├── src
│   │   │   │   │   ├── fortranobject.c
│   │   │   │   │   └── fortranobject.h
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_array_from_pyobj.cpython-36.pyc
│   │   │   │   │   │   ├── test_assumed_shape.cpython-36.pyc
│   │   │   │   │   │   ├── test_block_docstring.cpython-36.pyc
│   │   │   │   │   │   ├── test_callback.cpython-36.pyc
│   │   │   │   │   │   ├── test_common.cpython-36.pyc
│   │   │   │   │   │   ├── test_kind.cpython-36.pyc
│   │   │   │   │   │   ├── test_mixed.cpython-36.pyc
│   │   │   │   │   │   ├── test_parameter.cpython-36.pyc
│   │   │   │   │   │   ├── test_regression.cpython-36.pyc
│   │   │   │   │   │   ├── test_return_character.cpython-36.pyc
│   │   │   │   │   │   ├── test_return_complex.cpython-36.pyc
│   │   │   │   │   │   ├── test_return_integer.cpython-36.pyc
│   │   │   │   │   │   ├── test_return_logical.cpython-36.pyc
│   │   │   │   │   │   ├── test_return_real.cpython-36.pyc
│   │   │   │   │   │   ├── test_semicolon_split.cpython-36.pyc
│   │   │   │   │   │   ├── test_size.cpython-36.pyc
│   │   │   │   │   │   ├── test_string.cpython-36.pyc
│   │   │   │   │   │   └── util.cpython-36.pyc
│   │   │   │   │   ├── src
│   │   │   │   │   │   ├── array_from_pyobj
│   │   │   │   │   │   │   └── wrapmodule.c
│   │   │   │   │   │   ├── assumed_shape
│   │   │   │   │   │   │   ├── foo_free.f90
│   │   │   │   │   │   │   ├── foo_mod.f90
│   │   │   │   │   │   │   ├── foo_use.f90
│   │   │   │   │   │   │   └── precision.f90
│   │   │   │   │   │   ├── common
│   │   │   │   │   │   │   └── block.f
│   │   │   │   │   │   ├── kind
│   │   │   │   │   │   │   └── foo.f90
│   │   │   │   │   │   ├── mixed
│   │   │   │   │   │   │   ├── foo.f
│   │   │   │   │   │   │   ├── foo_fixed.f90
│   │   │   │   │   │   │   └── foo_free.f90
│   │   │   │   │   │   ├── parameter
│   │   │   │   │   │   │   ├── constant_both.f90
│   │   │   │   │   │   │   ├── constant_compound.f90
│   │   │   │   │   │   │   ├── constant_integer.f90
│   │   │   │   │   │   │   ├── constant_non_compound.f90
│   │   │   │   │   │   │   └── constant_real.f90
│   │   │   │   │   │   ├── regression
│   │   │   │   │   │   │   └── inout.f90
│   │   │   │   │   │   ├── size
│   │   │   │   │   │   │   └── foo.f90
│   │   │   │   │   │   └── string
│   │   │   │   │   │   └── char.f90
│   │   │   │   │   ├── test_array_from_pyobj.py
│   │   │   │   │   ├── test_assumed_shape.py
│   │   │   │   │   ├── test_block_docstring.py
│   │   │   │   │   ├── test_callback.py
│   │   │   │   │   ├── test_common.py
│   │   │   │   │   ├── test_kind.py
│   │   │   │   │   ├── test_mixed.py
│   │   │   │   │   ├── test_parameter.py
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_return_character.py
│   │   │   │   │   ├── test_return_complex.py
│   │   │   │   │   ├── test_return_integer.py
│   │   │   │   │   ├── test_return_logical.py
│   │   │   │   │   ├── test_return_real.py
│   │   │   │   │   ├── test_semicolon_split.py
│   │   │   │   │   ├── test_size.py
│   │   │   │   │   ├── test_string.py
│   │   │   │   │   └── util.py
│   │   │   │   ├── use_rules.py
│   │   │   │   └── __version__.py
│   │   │   ├── fft
│   │   │   │   ├── fftpack_lite.cp36-win_amd64.pyd
│   │   │   │   ├── fftpack.py
│   │   │   │   ├── helper.py
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── fftpack.cpython-36.pyc
│   │   │   │   │   ├── helper.cpython-36.pyc
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── test_fftpack.cpython-36.pyc
│   │   │   │   │   └── test_helper.cpython-36.pyc
│   │   │   │   ├── test_fftpack.py
│   │   │   │   └── test_helper.py
│   │   │   ├── _globals.py
│   │   │   ├── _import_tools.py
│   │   │   ├── __init__.py
│   │   │   ├── lib
│   │   │   │   ├── arraypad.py
│   │   │   │   ├── arraysetops.py
│   │   │   │   ├── arrayterator.py
│   │   │   │   ├── _datasource.py
│   │   │   │   ├── financial.py
│   │   │   │   ├── format.py
│   │   │   │   ├── function_base.py
│   │   │   │   ├── histograms.py
│   │   │   │   ├── index_tricks.py
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── _iotools.py
│   │   │   │   ├── mixins.py
│   │   │   │   ├── nanfunctions.py
│   │   │   │   ├── npyio.py
│   │   │   │   ├── polynomial.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── arraypad.cpython-36.pyc
│   │   │   │   │   ├── arraysetops.cpython-36.pyc
│   │   │   │   │   ├── arrayterator.cpython-36.pyc
│   │   │   │   │   ├── _datasource.cpython-36.pyc
│   │   │   │   │   ├── financial.cpython-36.pyc
│   │   │   │   │   ├── format.cpython-36.pyc
│   │   │   │   │   ├── function_base.cpython-36.pyc
│   │   │   │   │   ├── histograms.cpython-36.pyc
│   │   │   │   │   ├── index_tricks.cpython-36.pyc
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── _iotools.cpython-36.pyc
│   │   │   │   │   ├── mixins.cpython-36.pyc
│   │   │   │   │   ├── nanfunctions.cpython-36.pyc
│   │   │   │   │   ├── npyio.cpython-36.pyc
│   │   │   │   │   ├── polynomial.cpython-36.pyc
│   │   │   │   │   ├── recfunctions.cpython-36.pyc
│   │   │   │   │   ├── scimath.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   ├── shape_base.cpython-36.pyc
│   │   │   │   │   ├── stride_tricks.cpython-36.pyc
│   │   │   │   │   ├── twodim_base.cpython-36.pyc
│   │   │   │   │   ├── type_check.cpython-36.pyc
│   │   │   │   │   ├── ufunclike.cpython-36.pyc
│   │   │   │   │   ├── user_array.cpython-36.pyc
│   │   │   │   │   ├── utils.cpython-36.pyc
│   │   │   │   │   └── _version.cpython-36.pyc
│   │   │   │   ├── recfunctions.py
│   │   │   │   ├── scimath.py
│   │   │   │   ├── setup.py
│   │   │   │   ├── shape_base.py
│   │   │   │   ├── stride_tricks.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── py2-objarr.npy
│   │   │   │   │   │   ├── py2-objarr.npz
│   │   │   │   │   │   ├── py3-objarr.npy
│   │   │   │   │   │   ├── py3-objarr.npz
│   │   │   │   │   │   ├── python3.npy
│   │   │   │   │   │   └── win64python2.npy
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_arraypad.cpython-36.pyc
│   │   │   │   │   │   ├── test_arraysetops.cpython-36.pyc
│   │   │   │   │   │   ├── test_arrayterator.cpython-36.pyc
│   │   │   │   │   │   ├── test__datasource.cpython-36.pyc
│   │   │   │   │   │   ├── test_financial.cpython-36.pyc
│   │   │   │   │   │   ├── test_format.cpython-36.pyc
│   │   │   │   │   │   ├── test_function_base.cpython-36.pyc
│   │   │   │   │   │   ├── test_histograms.cpython-36.pyc
│   │   │   │   │   │   ├── test_index_tricks.cpython-36.pyc
│   │   │   │   │   │   ├── test_io.cpython-36.pyc
│   │   │   │   │   │   ├── test__iotools.cpython-36.pyc
│   │   │   │   │   │   ├── test_mixins.cpython-36.pyc
│   │   │   │   │   │   ├── test_nanfunctions.cpython-36.pyc
│   │   │   │   │   │   ├── test_packbits.cpython-36.pyc
│   │   │   │   │   │   ├── test_polynomial.cpython-36.pyc
│   │   │   │   │   │   ├── test_recfunctions.cpython-36.pyc
│   │   │   │   │   │   ├── test_regression.cpython-36.pyc
│   │   │   │   │   │   ├── test_shape_base.cpython-36.pyc
│   │   │   │   │   │   ├── test_stride_tricks.cpython-36.pyc
│   │   │   │   │   │   ├── test_twodim_base.cpython-36.pyc
│   │   │   │   │   │   ├── test_type_check.cpython-36.pyc
│   │   │   │   │   │   ├── test_ufunclike.cpython-36.pyc
│   │   │   │   │   │   ├── test_utils.cpython-36.pyc
│   │   │   │   │   │   └── test__version.cpython-36.pyc
│   │   │   │   │   ├── test_arraypad.py
│   │   │   │   │   ├── test_arraysetops.py
│   │   │   │   │   ├── test_arrayterator.py
│   │   │   │   │   ├── test__datasource.py
│   │   │   │   │   ├── test_financial.py
│   │   │   │   │   ├── test_format.py
│   │   │   │   │   ├── test_function_base.py
│   │   │   │   │   ├── test_histograms.py
│   │   │   │   │   ├── test_index_tricks.py
│   │   │   │   │   ├── test_io.py
│   │   │   │   │   ├── test__iotools.py
│   │   │   │   │   ├── test_mixins.py
│   │   │   │   │   ├── test_nanfunctions.py
│   │   │   │   │   ├── test_packbits.py
│   │   │   │   │   ├── test_polynomial.py
│   │   │   │   │   ├── test_recfunctions.py
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_shape_base.py
│   │   │   │   │   ├── test_stride_tricks.py
│   │   │   │   │   ├── test_twodim_base.py
│   │   │   │   │   ├── test_type_check.py
│   │   │   │   │   ├── test_ufunclike.py
│   │   │   │   │   ├── test_utils.py
│   │   │   │   │   └── test__version.py
│   │   │   │   ├── twodim_base.py
│   │   │   │   ├── type_check.py
│   │   │   │   ├── ufunclike.py
│   │   │   │   ├── user_array.py
│   │   │   │   ├── utils.py
│   │   │   │   └── _version.py
│   │   │   ├── LICENSE.txt
│   │   │   ├── linalg
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lapack_lite.cp36-win_amd64.pyd
│   │   │   │   ├── linalg.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── linalg.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_build.cpython-36.pyc
│   │   │   │   │   │   ├── test_deprecations.cpython-36.pyc
│   │   │   │   │   │   ├── test_linalg.cpython-36.pyc
│   │   │   │   │   │   └── test_regression.cpython-36.pyc
│   │   │   │   │   ├── test_build.py
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_linalg.py
│   │   │   │   │   └── test_regression.py
│   │   │   │   └── _umath_linalg.cp36-win_amd64.pyd
│   │   │   ├── ma
│   │   │   │   ├── bench.py
│   │   │   │   ├── core.py
│   │   │   │   ├── extras.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mrecords.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── bench.cpython-36.pyc
│   │   │   │   │   ├── core.cpython-36.pyc
│   │   │   │   │   ├── extras.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── mrecords.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   ├── testutils.cpython-36.pyc
│   │   │   │   │   ├── timer_comparison.cpython-36.pyc
│   │   │   │   │   └── version.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_core.cpython-36.pyc
│   │   │   │   │   │   ├── test_deprecations.cpython-36.pyc
│   │   │   │   │   │   ├── test_extras.cpython-36.pyc
│   │   │   │   │   │   ├── test_mrecords.cpython-36.pyc
│   │   │   │   │   │   ├── test_old_ma.cpython-36.pyc
│   │   │   │   │   │   ├── test_regression.cpython-36.pyc
│   │   │   │   │   │   └── test_subclassing.cpython-36.pyc
│   │   │   │   │   ├── test_core.py
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_extras.py
│   │   │   │   │   ├── test_mrecords.py
│   │   │   │   │   ├── test_old_ma.py
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   └── test_subclassing.py
│   │   │   │   ├── testutils.py
│   │   │   │   ├── timer_comparison.py
│   │   │   │   └── version.py
│   │   │   ├── matlib.py
│   │   │   ├── matrixlib
│   │   │   │   ├── defmatrix.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── defmatrix.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── test_defmatrix.cpython-36.pyc
│   │   │   │   │   ├── test_interaction.cpython-36.pyc
│   │   │   │   │   ├── test_masked_matrix.cpython-36.pyc
│   │   │   │   │   ├── test_matrix_linalg.cpython-36.pyc
│   │   │   │   │   ├── test_multiarray.cpython-36.pyc
│   │   │   │   │   ├── test_numeric.cpython-36.pyc
│   │   │   │   │   └── test_regression.cpython-36.pyc
│   │   │   │   ├── test_defmatrix.py
│   │   │   │   ├── test_interaction.py
│   │   │   │   ├── test_masked_matrix.py
│   │   │   │   ├── test_matrix_linalg.py
│   │   │   │   ├── test_multiarray.py
│   │   │   │   ├── test_numeric.py
│   │   │   │   └── test_regression.py
│   │   │   ├── polynomial
│   │   │   │   ├── chebyshev.py
│   │   │   │   ├── hermite_e.py
│   │   │   │   ├── hermite.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── laguerre.py
│   │   │   │   ├── legendre.py
│   │   │   │   ├── _polybase.py
│   │   │   │   ├── polynomial.py
│   │   │   │   ├── polyutils.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── chebyshev.cpython-36.pyc
│   │   │   │   │   ├── hermite.cpython-36.pyc
│   │   │   │   │   ├── hermite_e.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── laguerre.cpython-36.pyc
│   │   │   │   │   ├── legendre.cpython-36.pyc
│   │   │   │   │   ├── _polybase.cpython-36.pyc
│   │   │   │   │   ├── polynomial.cpython-36.pyc
│   │   │   │   │   ├── polyutils.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── test_chebyshev.cpython-36.pyc
│   │   │   │   │   ├── test_classes.cpython-36.pyc
│   │   │   │   │   ├── test_hermite.cpython-36.pyc
│   │   │   │   │   ├── test_hermite_e.cpython-36.pyc
│   │   │   │   │   ├── test_laguerre.cpython-36.pyc
│   │   │   │   │   ├── test_legendre.cpython-36.pyc
│   │   │   │   │   ├── test_polynomial.cpython-36.pyc
│   │   │   │   │   ├── test_polyutils.cpython-36.pyc
│   │   │   │   │   └── test_printing.cpython-36.pyc
│   │   │   │   ├── test_chebyshev.py
│   │   │   │   ├── test_classes.py
│   │   │   │   ├── test_hermite_e.py
│   │   │   │   ├── test_hermite.py
│   │   │   │   ├── test_laguerre.py
│   │   │   │   ├── test_legendre.py
│   │   │   │   ├── test_polynomial.py
│   │   │   │   ├── test_polyutils.py
│   │   │   │   └── test_printing.py
│   │   │   ├── __pycache__
│   │   │   │   ├── add_newdocs.cpython-36.pyc
│   │   │   │   ├── __config__.cpython-36.pyc
│   │   │   │   ├── conftest.cpython-36.pyc
│   │   │   │   ├── ctypeslib.cpython-36.pyc
│   │   │   │   ├── _distributor_init.cpython-36.pyc
│   │   │   │   ├── dual.cpython-36.pyc
│   │   │   │   ├── _globals.cpython-36.pyc
│   │   │   │   ├── _import_tools.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── matlib.cpython-36.pyc
│   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   └── version.cpython-36.pyc
│   │   │   ├── random
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mtrand.cp36-win_amd64.pyd
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── info.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   └── setup.cpython-36.pyc
│   │   │   │   ├── randomkit.h
│   │   │   │   ├── setup.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── test_random.cpython-36.pyc
│   │   │   │   │   └── test_regression.cpython-36.pyc
│   │   │   │   ├── test_random.py
│   │   │   │   └── test_regression.py
│   │   │   ├── setup.py
│   │   │   ├── testing
│   │   │   │   ├── decorators.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── noseclasses.py
│   │   │   │   ├── nosetester.py
│   │   │   │   ├── print_coercion_tables.py
│   │   │   │   ├── _private
│   │   │   │   │   ├── decorators.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── noseclasses.py
│   │   │   │   │   ├── nosetester.py
│   │   │   │   │   ├── parameterized.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── decorators.cpython-36.pyc
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── noseclasses.cpython-36.pyc
│   │   │   │   │   │   ├── nosetester.cpython-36.pyc
│   │   │   │   │   │   ├── parameterized.cpython-36.pyc
│   │   │   │   │   │   ├── pytesttester.cpython-36.pyc
│   │   │   │   │   │   └── utils.cpython-36.pyc
│   │   │   │   │   ├── pytesttester.py
│   │   │   │   │   └── utils.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── decorators.cpython-36.pyc
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── noseclasses.cpython-36.pyc
│   │   │   │   │   ├── nosetester.cpython-36.pyc
│   │   │   │   │   ├── print_coercion_tables.cpython-36.pyc
│   │   │   │   │   ├── setup.cpython-36.pyc
│   │   │   │   │   └── utils.cpython-36.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   │   ├── test_decorators.cpython-36.pyc
│   │   │   │   │   │   ├── test_doctesting.cpython-36.pyc
│   │   │   │   │   │   └── test_utils.cpython-36.pyc
│   │   │   │   │   ├── test_decorators.py
│   │   │   │   │   ├── test_doctesting.py
│   │   │   │   │   └── test_utils.py
│   │   │   │   └── utils.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   │   ├── test_ctypeslib.cpython-36.pyc
│   │   │   │   │   ├── test_matlib.cpython-36.pyc
│   │   │   │   │   ├── test_numpy_version.cpython-36.pyc
│   │   │   │   │   ├── test_reloading.cpython-36.pyc
│   │   │   │   │   ├── test_scripts.cpython-36.pyc
│   │   │   │   │   └── test_warnings.cpython-36.pyc
│   │   │   │   ├── test_ctypeslib.py
│   │   │   │   ├── test_matlib.py
│   │   │   │   ├── test_numpy_version.py
│   │   │   │   ├── test_reloading.py
│   │   │   │   ├── test_scripts.py
│   │   │   │   └── test_warnings.py
│   │   │   └── version.py
│   │   ├── numpy-1.15.4.dist-info
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── pip-9.0.1-py3.6.egg
│   │   │   ├── EGG-INFO
│   │   │   │   ├── dependency_links.txt
│   │   │   │   ├── entry_points.txt
│   │   │   │   ├── not-zip-safe
│   │   │   │   ├── PKG-INFO
│   │   │   │   ├── requires.txt
│   │   │   │   ├── SOURCES.txt
│   │   │   │   └── top_level.txt
│   │   │   └── pip
│   │   │   ├── basecommand.py
│   │   │   ├── baseparser.py
│   │   │   ├── cmdoptions.py
│   │   │   ├── commands
│   │   │   │   ├── check.py
│   │   │   │   ├── completion.py
│   │   │   │   ├── download.py
│   │   │   │   ├── freeze.py
│   │   │   │   ├── hash.py
│   │   │   │   ├── help.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── install.py
│   │   │   │   ├── list.py
│   │   │   │   ├── search.py
│   │   │   │   ├── show.py
│   │   │   │   ├── uninstall.py
│   │   │   │   └── wheel.py
│   │   │   ├── compat
│   │   │   │   ├── dictconfig.py
│   │   │   │   └── __init__.py
│   │   │   ├── download.py
│   │   │   ├── exceptions.py
│   │   │   ├── index.py
│   │   │   ├── __init__.py
│   │   │   ├── locations.py
│   │   │   ├── __main__.py
│   │   │   ├── models
│   │   │   │   ├── index.py
│   │   │   │   └── __init__.py
│   │   │   ├── operations
│   │   │   │   ├── check.py
│   │   │   │   ├── freeze.py
│   │   │   │   └── __init__.py
│   │   │   ├── pep425tags.py
│   │   │   ├── req
│   │   │   │   ├── __init__.py
│   │   │   │   ├── req_file.py
│   │   │   │   ├── req_install.py
│   │   │   │   ├── req_set.py
│   │   │   │   └── req_uninstall.py
│   │   │   ├── status_codes.py
│   │   │   ├── utils
│   │   │   │   ├── appdirs.py
│   │   │   │   ├── build.py
│   │   │   │   ├── deprecation.py
│   │   │   │   ├── encoding.py
│   │   │   │   ├── filesystem.py
│   │   │   │   ├── glibc.py
│   │   │   │   ├── hashes.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── logging.py
│   │   │   │   ├── outdated.py
│   │   │   │   ├── packaging.py
│   │   │   │   ├── setuptools_build.py
│   │   │   │   └── ui.py
│   │   │   ├── vcs
│   │   │   │   ├── bazaar.py
│   │   │   │   ├── git.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mercurial.py
│   │   │   │   └── subversion.py
│   │   │   ├── _vendor
│   │   │   │   ├── appdirs.py
│   │   │   │   ├── cachecontrol
│   │   │   │   │   ├── adapter.py
│   │   │   │   │   ├── cache.py
│   │   │   │   │   ├── caches
│   │   │   │   │   │   ├── file_cache.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── redis_cache.py
│   │   │   │   │   ├── _cmd.py
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── controller.py
│   │   │   │   │   ├── filewrapper.py
│   │   │   │   │   ├── heuristics.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── serialize.py
│   │   │   │   │   └── wrapper.py
│   │   │   │   ├── colorama
│   │   │   │   │   ├── ansi.py
│   │   │   │   │   ├── ansitowin32.py
│   │   │   │   │   ├── initialise.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── win32.py
│   │   │   │   │   └── winterm.py
│   │   │   │   ├── distlib
│   │   │   │   │   ├── _backport
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── misc.py
│   │   │   │   │   │   ├── shutil.py
│   │   │   │   │   │   ├── sysconfig.cfg
│   │   │   │   │   │   ├── sysconfig.py
│   │   │   │   │   │   └── tarfile.py
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── database.py
│   │   │   │   │   ├── index.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── locators.py
│   │   │   │   │   ├── manifest.py
│   │   │   │   │   ├── markers.py
│   │   │   │   │   ├── metadata.py
│   │   │   │   │   ├── resources.py
│   │   │   │   │   ├── scripts.py
│   │   │   │   │   ├── t32.exe
│   │   │   │   │   ├── t64.exe
│   │   │   │   │   ├── util.py
│   │   │   │   │   ├── version.py
│   │   │   │   │   ├── w32.exe
│   │   │   │   │   ├── w64.exe
│   │   │   │   │   └── wheel.py
│   │   │   │   ├── distro.py
│   │   │   │   ├── html5lib
│   │   │   │   │   ├── constants.py
│   │   │   │   │   ├── filters
│   │   │   │   │   │   ├── alphabeticalattributes.py
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── inject_meta_charset.py
│   │   │   │   │   │   ├── lint.py
│   │   │   │   │   │   ├── optionaltags.py
│   │   │   │   │   │   ├── sanitizer.py
│   │   │   │   │   │   └── whitespace.py
│   │   │   │   │   ├── html5parser.py
│   │   │   │   │   ├── _ihatexml.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── _inputstream.py
│   │   │   │   │   ├── serializer.py
│   │   │   │   │   ├── _tokenizer.py
│   │   │   │   │   ├── treeadapters
│   │   │   │   │   │   ├── genshi.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── sax.py
│   │   │   │   │   ├── treebuilders
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── dom.py
│   │   │   │   │   │   ├── etree_lxml.py
│   │   │   │   │   │   ├── etree.py
│   │   │   │   │   │   └── __init__.py
│   │   │   │   │   ├── treewalkers
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── dom.py
│   │   │   │   │   │   ├── etree_lxml.py
│   │   │   │   │   │   ├── etree.py
│   │   │   │   │   │   ├── genshi.py
│   │   │   │   │   │   └── __init__.py
│   │   │   │   │   ├── _trie
│   │   │   │   │   │   ├── _base.py
│   │   │   │   │   │   ├── datrie.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── py.py
│   │   │   │   │   └── _utils.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── ipaddress.py
│   │   │   │   ├── lockfile
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── linklockfile.py
│   │   │   │   │   ├── mkdirlockfile.py
│   │   │   │   │   ├── pidlockfile.py
│   │   │   │   │   ├── sqlitelockfile.py
│   │   │   │   │   └── symlinklockfile.py
│   │   │   │   ├── ordereddict.py
│   │   │   │   ├── packaging
│   │   │   │   │   ├── __about__.py
│   │   │   │   │   ├── _compat.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── markers.py
│   │   │   │   │   ├── requirements.py
│   │   │   │   │   ├── specifiers.py
│   │   │   │   │   ├── _structures.py
│   │   │   │   │   ├── utils.py
│   │   │   │   │   └── version.py
│   │   │   │   ├── pkg_resources
│   │   │   │   │   └── __init__.py
│   │   │   │   ├── progress
│   │   │   │   │   ├── bar.py
│   │   │   │   │   ├── counter.py
│   │   │   │   │   ├── helpers.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── spinner.py
│   │   │   │   ├── pyparsing.py
│   │   │   │   ├── requests
│   │   │   │   │   ├── adapters.py
│   │   │   │   │   ├── api.py
│   │   │   │   │   ├── auth.py
│   │   │   │   │   ├── cacert.pem
│   │   │   │   │   ├── certs.py
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── cookies.py
│   │   │   │   │   ├── exceptions.py
│   │   │   │   │   ├── hooks.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── models.py
│   │   │   │   │   ├── packages
│   │   │   │   │   │   ├── chardet
│   │   │   │   │   │   │   ├── big5freq.py
│   │   │   │   │   │   │   ├── big5prober.py
│   │   │   │   │   │   │   ├── chardetect.py
│   │   │   │   │   │   │   ├── chardistribution.py
│   │   │   │   │   │   │   ├── charsetgroupprober.py
│   │   │   │   │   │   │   ├── charsetprober.py
│   │   │   │   │   │   │   ├── codingstatemachine.py
│   │   │   │   │   │   │   ├── compat.py
│   │   │   │   │   │   │   ├── constants.py
│   │   │   │   │   │   │   ├── cp949prober.py
│   │   │   │   │   │   │   ├── escprober.py
│   │   │   │   │   │   │   ├── escsm.py
│   │   │   │   │   │   │   ├── eucjpprober.py
│   │   │   │   │   │   │   ├── euckrfreq.py
│   │   │   │   │   │   │   ├── euckrprober.py
│   │   │   │   │   │   │   ├── euctwfreq.py
│   │   │   │   │   │   │   ├── euctwprober.py
│   │   │   │   │   │   │   ├── gb2312freq.py
│   │   │   │   │   │   │   ├── gb2312prober.py
│   │   │   │   │   │   │   ├── hebrewprober.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── jisfreq.py
│   │   │   │   │   │   │   ├── jpcntx.py
│   │   │   │   │   │   │   ├── langbulgarianmodel.py
│   │   │   │   │   │   │   ├── langcyrillicmodel.py
│   │   │   │   │   │   │   ├── langgreekmodel.py
│   │   │   │   │   │   │   ├── langhebrewmodel.py
│   │   │   │   │   │   │   ├── langhungarianmodel.py
│   │   │   │   │   │   │   ├── langthaimodel.py
│   │   │   │   │   │   │   ├── latin1prober.py
│   │   │   │   │   │   │   ├── mbcharsetprober.py
│   │   │   │   │   │   │   ├── mbcsgroupprober.py
│   │   │   │   │   │   │   ├── mbcssm.py
│   │   │   │   │   │   │   ├── sbcharsetprober.py
│   │   │   │   │   │   │   ├── sbcsgroupprober.py
│   │   │   │   │   │   │   ├── sjisprober.py
│   │   │   │   │   │   │   ├── universaldetector.py
│   │   │   │   │   │   │   └── utf8prober.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── urllib3
│   │   │   │   │   │   ├── _collections.py
│   │   │   │   │   │   ├── connectionpool.py
│   │   │   │   │   │   ├── connection.py
│   │   │   │   │   │   ├── contrib
│   │   │   │   │   │   │   ├── appengine.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── ntlmpool.py
│   │   │   │   │   │   │   ├── pyopenssl.py
│   │   │   │   │   │   │   └── socks.py
│   │   │   │   │   │   ├── exceptions.py
│   │   │   │   │   │   ├── fields.py
│   │   │   │   │   │   ├── filepost.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── packages
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── ordered_dict.py
│   │   │   │   │   │   │   ├── six.py
│   │   │   │   │   │   │   └── ssl_match_hostname
│   │   │   │   │   │   │   ├── _implementation.py
│   │   │   │   │   │   │   └── __init__.py
│   │   │   │   │   │   ├── poolmanager.py
│   │   │   │   │   │   ├── request.py
│   │   │   │   │   │   ├── response.py
│   │   │   │   │   │   └── util
│   │   │   │   │   │   ├── connection.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── request.py
│   │   │   │   │   │   ├── response.py
│   │   │   │   │   │   ├── retry.py
│   │   │   │   │   │   ├── ssl_.py
│   │   │   │   │   │   ├── timeout.py
│   │   │   │   │   │   └── url.py
│   │   │   │   │   ├── sessions.py
│   │   │   │   │   ├── status_codes.py
│   │   │   │   │   ├── structures.py
│   │   │   │   │   └── utils.py
│   │   │   │   ├── retrying.py
│   │   │   │   ├── re-vendor.py
│   │   │   │   ├── six.py
│   │   │   │   └── webencodings
│   │   │   │   ├── __init__.py
│   │   │   │   ├── labels.py
│   │   │   │   ├── mklabels.py
│   │   │   │   ├── tests.py
│   │   │   │   └── x_user_defined.py
│   │   │   └── wheel.py
│   │   ├── __pycache__
│   │   │   ├── cycler.cpython-36.pyc
│   │   │   ├── pylab.cpython-36.pyc
│   │   │   ├── pyparsing.cpython-36.pyc
│   │   │   └── six.cpython-36.pyc
│   │   ├── pylab.py
│   │   ├── pyparsing-2.3.0.dist-info
│   │   │   ├── INSTALLER
│   │   │   ├── LICENSE
│   │   │   ├── METADATA
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── pyparsing.py
│   │   ├── python_dateutil-2.7.5.dist-info
│   │   │   ├── INSTALLER
│   │   │   ├── LICENSE.txt
│   │   │   ├── METADATA
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   ├── WHEEL
│   │   │   └── zip-safe
│   │   ├── setuptools-28.8.0-py3.6.egg
│   │   ├── setuptools.pth
│   │   ├── six-1.12.0.dist-info
│   │   │   ├── INSTALLER
│   │   │   ├── LICENSE
│   │   │   ├── METADATA
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   └── six.py
│   └── tcl8.6
│   └── init.tcl
├── pip-selfcheck.json
├── pyvenv.cfg
└── Scripts
├── activate
├── activate.bat
├── Activate.ps1
├── api-ms-win-core-console-l1-1-0.dll
├── api-ms-win-core-datetime-l1-1-0.dll
├── api-ms-win-core-debug-l1-1-0.dll
├── api-ms-win-core-errorhandling-l1-1-0.dll
├── api-ms-win-core-file-l1-1-0.dll
├── api-ms-win-core-file-l1-2-0.dll
├── api-ms-win-core-file-l2-1-0.dll
├── api-ms-win-core-handle-l1-1-0.dll
├── api-ms-win-core-heap-l1-1-0.dll
├── api-ms-win-core-interlocked-l1-1-0.dll
├── api-ms-win-core-libraryloader-l1-1-0.dll
├── api-ms-win-core-localization-l1-2-0.dll
├── api-ms-win-core-memory-l1-1-0.dll
├── api-ms-win-core-namedpipe-l1-1-0.dll
├── api-ms-win-core-processenvironment-l1-1-0.dll
├── api-ms-win-core-processthreads-l1-1-0.dll
├── api-ms-win-core-processthreads-l1-1-1.dll
├── api-ms-win-core-profile-l1-1-0.dll
├── api-ms-win-core-rtlsupport-l1-1-0.dll
├── api-ms-win-core-string-l1-1-0.dll
├── api-ms-win-core-synch-l1-1-0.dll
├── api-ms-win-core-synch-l1-2-0.dll
├── api-ms-win-core-sysinfo-l1-1-0.dll
├── api-ms-win-core-timezone-l1-1-0.dll
├── api-ms-win-core-util-l1-1-0.dll
├── api-ms-win-crt-conio-l1-1-0.dll
├── api-ms-win-crt-convert-l1-1-0.dll
├── api-ms-win-crt-environment-l1-1-0.dll
├── api-ms-win-crt-filesystem-l1-1-0.dll
├── api-ms-win-crt-heap-l1-1-0.dll
├── api-ms-win-crt-locale-l1-1-0.dll
├── api-ms-win-crt-math-l1-1-0.dll
├── api-ms-win-crt-multibyte-l1-1-0.dll
├── api-ms-win-crt-private-l1-1-0.dll
├── api-ms-win-crt-process-l1-1-0.dll
├── api-ms-win-crt-runtime-l1-1-0.dll
├── api-ms-win-crt-stdio-l1-1-0.dll
├── api-ms-win-crt-string-l1-1-0.dll
├── api-ms-win-crt-time-l1-1-0.dll
├── api-ms-win-crt-utility-l1-1-0.dll
├── _asyncio.pyd
├── _bz2.pyd
├── concrt140.dll
├── _ctypes.pyd
├── _ctypes_test.pyd
├── deactivate.bat
├── _decimal.pyd
├── easy_install-3.6.exe
├── easy_install-3.6-script.py
├── easy_install.exe
├── easy_install-script.py
├── _elementtree.pyd
├── f2py.py
├── _hashlib.pyd
├── _lzma.pyd
├── _msi.pyd
├── msvcp140.dll
├── _multiprocessing.pyd
├── _overlapped.pyd
├── pip3.6.exe
├── pip3.6-script.py
├── pip3.exe
├── pip3-script.py
├── pip.exe
├── pip-script.py
├── __pycache__
│   └── f2py.cpython-36.pyc
├── pyexpat.pyd
├── python36.dll
├── python3.dll
├── python.exe
├── pythonw.exe
├── select.pyd
├── _socket.pyd
├── sqlite3.dll
├── _sqlite3.pyd
├── _ssl.pyd
├── tcl86t.dll
├── _testbuffer.pyd
├── _testcapi.pyd
├── _testconsole.pyd
├── _testimportmultiple.pyd
├── _testmultiphase.pyd
├── tk86t.dll
├── _tkinter.pyd
├── ucrtbase.dll
├── unicodedata.pyd
├── vccorlib140.dll
├── vcomp140.dll
├── vcruntime140.dll
├── winsound.pyd
├── xlwings32-0.11.5.dll
└── xlwings64-0.11.5.dll

187 directories, 1844 files

标签:

实例下载地址

机器学习-决策树python代码实现

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警