码迷,mamicode.com
首页 > 编程语言 > 详细

python统计分析-频数统计

时间:2021-04-23 11:49:29      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:int   pytho   连接   import   bsp   检验   连接数据库   rgb   env   

 

#!/usr/bin/env python
# -*- coding:utf-8 -*-

# <editable>

def execute():
    # <editable>
    ‘‘‘
    载入模块
    ‘‘‘
    from collections import Counter
    import pandas as pd
    from sqlalchemy import create_engine
    ‘‘‘
    连接数据库
    ‘‘‘
    engine = create_engine(mysql+pymysql://root:123123qwe@127.0.0.1:3306/analysis)
    ‘‘‘
    选择目标数据
    ‘‘‘
    # 生成数据

    params = {
        "columns": "SUNACTIVITY",
    }
    inputs = {"table": 纯随机性检验}
    data_sql = select  + params[columns] +  from  + inputs[table]
    data_in = pd.read_sql_query(data_sql, engine)
    print(data_in)

    ‘‘‘
    频数统计
    ‘‘‘
    data = data_in[params[columns]]
    data_out = pd.DataFrame.from_dict(Counter(data), orient=index).reset_index()
    data_out.columns = [params[columns], count]

    ‘‘‘
    将结果写出
    ‘‘‘
    print(data_out)


# </editable>


if __name__ == __main__:
    execute()

 

python统计分析-频数统计

标签:int   pytho   连接   import   bsp   检验   连接数据库   rgb   env   

原文地址:https://www.cnblogs.com/renfanzi/p/14688768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!