zoukankan      html  css  js  c++  java
  • 使用 AutoViz 进行绘图(自动完成数据可视化)

    准备工作
    
    安装第三方库:
    pip install autoviz xlrd wordcloud
    我安装的
    autoviz 是 0.0.84
    xlrd 是 1.2.0
    wordcloud 是 1.8.1
    
    
    如果你有数据集,如 csv 文件,可以用你自己的。
    我这里使用的是 seaborn-data 数据集

    Github :https://github.com/mwaskom/seaborn-data

    
    
    我的在导入运行时,出现了 get_ipython().magic('matplotlib inline') 问题
    将 if verbose <= 1: 和 get_ipython().magic('matplotlib inline') 的注释去掉
    (我的是修改了两处 225行和 811行,我的 autoviz 是 0.0.84 版本) if verbose <= 1: # ipython inline magic shouldn't be needed because all plots are # being displayed with plt.show() calls get_ipython().magic('matplotlib inline')
    
    
    from autoviz.AutoViz_Class import AutoViz_Class
    
    AV = AutoViz_Class()
    
    
    path = 'seaborn-data/'
    df = AV.AutoViz(path + 'iris.csv')

    Shape of your Data Set loaded: (150, 5)
    ############## C L A S S I F Y I N G  V A R I A B L E S  ####################
    Classifying variables in data set...
        Number of Numeric Columns =  4
        Number of Integer-Categorical Columns =  0
        Number of String-Categorical Columns =  1
        Number of Factor-Categorical Columns =  0
        Number of String-Boolean Columns =  0
        Number of Numeric-Boolean Columns =  0
        Number of Discrete String Columns =  0
        Number of NLP String Columns =  0
        Number of Date Time Columns =  0
        Number of ID Columns =  0
        Number of Columns to Delete =  0
        5 Predictors classified...
            This does not include the Target column(s)
            No variables removed since no ID or low-information variables found in data set
    Number of All Scatter Plots = 10
    
     
     
     
     
     
     
     
    Time to run AutoViz (in seconds) = 6.461
    
     ###################### VISUALIZATION Completed ########################


    如果觉得文章不错,可以分享给其他人哟~
  • 相关阅读:
    Daemon Tools手工完全卸载方案
    不要轻易删除/windows/install下文件
    Dumpbin命令的使用
    v4l2 视频捕获
    2瓶4两酒,1个1.5两的酒杯
    n个平面分空间最多可分成多少份
    &#65279导致页面顶部空白一行解决方法
    Base64编码原理分析
    浏览器中“JavaScript解析器”工作原理
    IList转化为DataSet,解决了System.nullable()的问题
  • 原文地址:https://www.cnblogs.com/hany-postq473111315/p/15314180.html
Copyright © 2011-2022 走看看