随笔分类 -  数据挖掘

摘要:报错内容: C:\Opt\LjReport_client\venv\Scripts\python.exe C:\Opt\LjReport_client\auth_report_v2\analysis\bar_chart_analysis.py Traceback (most recent call 阅读全文
posted @ 2023-06-05 15:51 我当道士那儿些年 阅读(1091) 评论(1) 推荐(0) 编辑
摘要:def cross_analysis(variable_list, table_name, sub_area): # print(variable_list) # data = cross_analysis(["TPWL", "TPEB", "TPTOPA"], data_all, area) # 阅读全文
posted @ 2022-12-27 10:57 我当道士那儿些年 阅读(8) 评论(0) 推荐(0) 编辑
摘要:背景:需要使用pyhanlp来解决提取关键词的工作(并且支持在win7上面使用) 环境要求很高啊 先说报错 C:\Users\ADMINI~1\AppData\Local\Temp\pip-install-u617cfx3\jpype1\setup.py:173: FeatureNotice: Tu 阅读全文
posted @ 2021-04-29 15:40 我当道士那儿些年 阅读(1126) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from scipy.stats import chisquare import pandas as 阅读全文
posted @ 2021-04-22 11:37 我当道士那儿些年 阅读(546) 评论(0) 推荐(1) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from sklearn.decomposition import FactorAnalysis im 阅读全文
posted @ 2021-04-22 11:35 我当道士那儿些年 阅读(410) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import warnings from statsmodels.graphics.tsaplots 阅读全文
posted @ 2021-04-22 11:34 我当道士那儿些年 阅读(899) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sqlalchemy import create_e 阅读全文
posted @ 2021-04-22 11:31 我当道士那儿些年 阅读(285) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from collections import Counter import pandas as pd 阅读全文
posted @ 2021-04-22 11:29 我当道士那儿些年 阅读(1254) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from sklearn.decomposition import PCA import numpy 阅读全文
posted @ 2021-04-22 11:25 我当道士那儿些年 阅读(212) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from scipy.stats import ttest_ind, norm import pand 阅读全文
posted @ 2021-04-22 11:20 我当道士那儿些年 阅读(871) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from scipy.stats import normaltest import numpy as 阅读全文
posted @ 2021-04-22 11:18 我当道士那儿些年 阅读(245) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import warnings warnings.filterwarnings("ignore") f 阅读全文
posted @ 2021-04-22 10:46 我当道士那儿些年 阅读(881) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sqlalchemy import create_e 阅读全文
posted @ 2021-03-03 20:15 我当道士那儿些年 阅读(102) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): ''' 载入模块 ''' import pandas as pd from sqlalchemy import create_engine ''' 连接数 阅读全文
posted @ 2021-03-03 20:13 我当道士那儿些年 阅读(103) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 导入模块 ''' import math import pandas as pd from sqlalchemy imp 阅读全文
posted @ 2021-03-03 20:11 我当道士那儿些年 阅读(84) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python# -*- coding:utf-8 -*-# <editable>def execute(): # <editable> import pandas as pd import numpy as np import warnings warnings.fil 阅读全文
posted @ 2021-03-03 19:54 我当道士那儿些年 阅读(188) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> """ columns 特征 进行操作的所有列 """ def execute(): # <editable> ''' 载入模块 ''' import pandas as pd # i 阅读全文
posted @ 2021-03-03 19:53 我当道士那儿些年 阅读(80) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- def execute(): params = {"method": '', "columns": "score", "value": 20} inputs = {"table": 'test'} # <edi 阅读全文
posted @ 2021-03-03 19:52 我当道士那儿些年 阅读(96) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sklearn.model_selection im 阅读全文
posted @ 2021-03-03 19:45 我当道士那儿些年 阅读(93) 评论(0) 推荐(0) 编辑
摘要:表堆叠主要是两个DataFrame进行数据合并 #!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sq 阅读全文
posted @ 2021-03-03 19:32 我当道士那儿些年 阅读(103) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示