蓝螃蟹Karry0921

导航

2023年4月2日 #

数据挖掘(第六周)

摘要: 电子商务网站行为分析 # 代码11-1 import os import pandas as pd # 修改工作路径到指定文件夹 os.chdir("C:\Users\admin\Downloads\demo") # 第一种连接方式 from sqlalchemy import create_eng 阅读全文

posted @ 2023-04-02 21:26 蓝螃蟹Karry0921 阅读(5) 评论(0) 推荐(0) 编辑

2023年3月27日 #

数据挖掘(第五周)

摘要: import pandas as pd import matplotlib.pyplot as plt inputfile =r"C:\Users\admin\Downloads\original_data.xls" # 输入的数据文件 data = pd.read_excel(inputfile) 阅读全文

posted @ 2023-03-27 15:54 蓝螃蟹Karry0921 阅读(16) 评论(0) 推荐(0) 编辑

2023年3月15日 #

数据挖掘(第四周)

摘要: # 代码8-1 查看数据特征 import numpy as np import pandas as pd inputfile = r'C:\Users\86138\Downloads\data\数据挖掘与分析\GoodsOrder.csv' # 输入的数据文件 data = pd.read_csv 阅读全文

posted @ 2023-03-15 15:15 蓝螃蟹Karry0921 阅读(22) 评论(0) 推荐(0) 编辑

2023年3月8日 #

数据挖掘(第三周)

摘要: #客户城市分析import numpy as np import matplotlib.pyplot as plt from datetime import datetime import seaborn as sns from sklearn.preprocessing import Standa 阅读全文

posted @ 2023-03-08 10:47 蓝螃蟹Karry0921 阅读(24) 评论(0) 推荐(0) 编辑

2023年3月5日 #

数据挖掘作业(第二周)

摘要: # -*- coding: utf-8 -*- """ Created on Wed Mar 1 13:42:18 2023 @author: 86138 """ # 代码6-1 import numpy as np import pandas as pd inputfile = r'C:\User 阅读全文

posted @ 2023-03-05 19:47 蓝螃蟹Karry0921 阅读(12) 评论(0) 推荐(0) 编辑

2023年2月26日 #

数据分析(数据挖掘与分析)

摘要: #分析数据,将数据可视化import pandas as pd catering_sale = r'C:\Users\86138\Downloads\data\数据挖掘与分析\catering_sale.xls' # 餐饮数据 data = pd.read_excel(catering_sale, 阅读全文

posted @ 2023-02-26 20:02 蓝螃蟹Karry0921 阅读(54) 评论(0) 推荐(0) 编辑

2022年5月16日 #

VGG-16模型

摘要: 1.导入需要的python库,基于TensorFlow的Keras模块用于构建和训练模型 import tensorflow as tf from tensorflow import keras from tensorflow.keras import layers, regularizers im 阅读全文

posted @ 2022-05-16 00:10 蓝螃蟹Karry0921 阅读(173) 评论(0) 推荐(0) 编辑

2022年4月24日 #

人工智能第五章学习报告

摘要: 【案例5.1】导入TensorFlow,测试版本,并创建打印一个tf常量,获取常量的值import tensorflow as tf print(tf.__version__) a=tf.constant(2.0) print(a) 运行结果: 【案例5.2】在Tensorflow2.x的环境中使用 阅读全文

posted @ 2022-04-24 23:55 蓝螃蟹Karry0921 阅读(33) 评论(0) 推荐(0) 编辑

2022年3月18日 #

人工智能 神经网络

摘要: # -*- coding: utf-8 -*- """ Created on Fri Mar 18 15:10:08 2022 @author: 86138 """ import numpy as np import scipy.special import matplotlib.pyplot as 阅读全文

posted @ 2022-03-18 15:43 蓝螃蟹Karry0921 阅读(8) 评论(0) 推荐(0) 编辑

2021年12月15日 #

补发代码和截图

摘要: import wx class MyFrame(wx.Frame): def __init__(self,parent,id): wx.Frame.__init__(self,parent,id,title="创建TextCtrl类",size=(400,300)) panel=wx.Panel(s 阅读全文

posted @ 2021-12-15 23:37 蓝螃蟹Karry0921 阅读(15) 评论(0) 推荐(0) 编辑