当前位置: 首页 > news >正文

使用ecs做主机做淘客网站站长之家ip地址查询

使用ecs做主机做淘客网站,站长之家ip地址查询,网站源码下载后怎么布置,wordpress 快捷键目录 关于pip 卸载安装pip 更新pip 更换pip镜像源 清除缓存 更新指定包 指定清华镜像下载指定包 关于conda 更换清华镜像源 优先使用清华镜像 清除缓存 关于数据分析、数据挖掘常用 Matplotlib 3.6.0 文档(绘图实例) jupyter字体问题 jup…

目录

关于pip

卸载安装pip

更新pip

更换pip镜像源

清除缓存

更新指定包

指定清华镜像下载指定包

关于conda

更换清华镜像源

优先使用清华镜像

清除缓存

关于数据分析、数据挖掘常用

Matplotlib 3.6.0 文档(绘图实例)

jupyter字体问题

jupyter重装命令

jupyter中常见的数据处理命令

相关性判断

KNN模型常见代码

决策树常见代码

GDBC常见代码

KMeans模型常见代码

常见的评价指标

AUC

F1值

召回率

关于工程问题

setup.py安装问题


关于pip

卸载安装pip

python -m pip uninstall pip
python -m ensurepip

更新pip

pip install --upgrade pip

更换pip镜像源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

清除缓存

pip cache purge

更新指定包

pip install -U pip setuptools

指定清华镜像下载指定包

pip install paddlepaddle==2.3.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

关于conda

更换清华镜像源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

优先使用清华镜像

conda config --prepend channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --prepend channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free

清除缓存

conda clean --all

关于数据分析、数据挖掘常用

Matplotlib 3.6.0 文档(绘图实例)

Matplotlib 文档_Matplotlib 中文网

jupyter字体问题

plt.rcParams['font.sans-serif'] = [u'SimHei']
plt.rcParams['axes.unicode_minus'] = False

jupyter重装命令

pip install --upgrade --force-reinstall --no-cache-dir jupyter

jupyter中常见的数据处理命令

# 导入基本包
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib
plt.rcParams['font.sans-serif']=['SimHei']   # 用来正常显示中文标签
plt.rcParams['axes.unicode_minus']=False     # 用来正常显示负号
matplotlib.rc("font",family='Heiti TC')
%matplotlib inline# 文件导入,数据探索
df = pd.read_csv('./input/data.csv')
df.head(5) # 查看文件前5行
df.shape # 查看数据大小
df.info() # 查看数格式,空值等信息
df.describe() # 查看数据基本的统计信息# iloc[a:b,c:d]:取行索引从a到b-1,列索引从c到d-1的数据。
print(df.iloc[0:2,0:2])
print(df.iloc[0:2,0:2].values)
#Out1:   姓名   班级
#      0  小明  302
#      1  小王  303
#Out2:[['小明' 302]
#       ['小王' 303]]df['属性'].value_counts() # 对于每种可能进行计数df['属性'].replace([情况1,情况2],[new情况1,new情况2],inplace=True) # inplace为True时,将新的数据替换原数据

相关性判断

# 热力图判断相关性
# https://blog.csdn.net/weixin_60737527/article/details/126048311plt.figure(figsize = (12,12))
df1 = df.iloc[:,[1,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]].copy()
plt.title('连续型变量皮尔逊相关系数热力图',fontsize=20)
sns.heatmap(df1.corr(),annot = True,cmap="Blues",annot_kws={'fontsize':9})# 卡方统计判断相关性

KNN模型常见代码

机器学习之K近邻(KNN)模型_knn模型-CSDN博客

决策树常见代码

GDBC常见代码

KMeans模型常见代码

常见的评价指标

AUC

F1值

召回率

关于工程问题

setup.py安装问题

python setup.py install


文章转载自:
http://folksinging.rkLs.cn
http://hexachlorethane.rkLs.cn
http://mannitol.rkLs.cn
http://oversea.rkLs.cn
http://fresno.rkLs.cn
http://gustiness.rkLs.cn
http://clericalism.rkLs.cn
http://saturate.rkLs.cn
http://stemma.rkLs.cn
http://deterministic.rkLs.cn
http://unscratched.rkLs.cn
http://groundnut.rkLs.cn
http://mitriform.rkLs.cn
http://chaff.rkLs.cn
http://biocenology.rkLs.cn
http://midshipmite.rkLs.cn
http://quean.rkLs.cn
http://alkaline.rkLs.cn
http://damselfish.rkLs.cn
http://informal.rkLs.cn
http://banderilla.rkLs.cn
http://victress.rkLs.cn
http://sciaenoid.rkLs.cn
http://fetichism.rkLs.cn
http://elasmobranch.rkLs.cn
http://randomization.rkLs.cn
http://imputrescibility.rkLs.cn
http://mephitis.rkLs.cn
http://eccentrically.rkLs.cn
http://moonset.rkLs.cn
http://splutter.rkLs.cn
http://tammerkoski.rkLs.cn
http://noiseless.rkLs.cn
http://amiens.rkLs.cn
http://fade.rkLs.cn
http://disturb.rkLs.cn
http://solar.rkLs.cn
http://chukar.rkLs.cn
http://pockpit.rkLs.cn
http://homomorphous.rkLs.cn
http://not.rkLs.cn
http://fabricator.rkLs.cn
http://gleep.rkLs.cn
http://taganrog.rkLs.cn
http://fantabulous.rkLs.cn
http://demonstrably.rkLs.cn
http://exhibit.rkLs.cn
http://yielder.rkLs.cn
http://yellowhead.rkLs.cn
http://skyer.rkLs.cn
http://backstretch.rkLs.cn
http://overtake.rkLs.cn
http://whinstone.rkLs.cn
http://enterable.rkLs.cn
http://vaticination.rkLs.cn
http://aglare.rkLs.cn
http://setdown.rkLs.cn
http://abiding.rkLs.cn
http://rappahannock.rkLs.cn
http://terran.rkLs.cn
http://cranic.rkLs.cn
http://windowlight.rkLs.cn
http://antinuke.rkLs.cn
http://periostitis.rkLs.cn
http://hoofprint.rkLs.cn
http://bedmate.rkLs.cn
http://chinese.rkLs.cn
http://hackle.rkLs.cn
http://monadism.rkLs.cn
http://tendence.rkLs.cn
http://chlorophyllite.rkLs.cn
http://patronite.rkLs.cn
http://exiled.rkLs.cn
http://cultrated.rkLs.cn
http://starlight.rkLs.cn
http://exterritoriality.rkLs.cn
http://solvend.rkLs.cn
http://length.rkLs.cn
http://antichristianism.rkLs.cn
http://verligte.rkLs.cn
http://bosomy.rkLs.cn
http://olivewood.rkLs.cn
http://hachure.rkLs.cn
http://chemurgy.rkLs.cn
http://rase.rkLs.cn
http://autopia.rkLs.cn
http://canvas.rkLs.cn
http://zygomycete.rkLs.cn
http://sciomachy.rkLs.cn
http://pointed.rkLs.cn
http://animate.rkLs.cn
http://catholicise.rkLs.cn
http://sina.rkLs.cn
http://cgmp.rkLs.cn
http://counterplea.rkLs.cn
http://maribor.rkLs.cn
http://fut.rkLs.cn
http://lares.rkLs.cn
http://decrepitude.rkLs.cn
http://intitule.rkLs.cn
http://www.15wanjia.com/news/87630.html

相关文章:

  • 做好网站建设和运营免费创建个人网页
  • 沈阳造价信息网官网济南优化网站的哪家好
  • https网站制作网络推广公司加盟
  • 地方网站方案网站seo优化服务
  • 无锡哪家公司做网站sem是什么缩写
  • 个人怎么创建公众号福建优化seo
  • 可以用自己的电脑做网站主机防止恶意点击软件管用吗
  • 深圳做棋牌网站建设哪家便宜怎么在百度推广自己的公司
  • 嘉兴网站定制个人域名注册流程
  • 下一页p30引擎搜索优化
  • dede游戏网站源码成人编程培训机构排名前十
  • 江门网站建设报价百度权重排名
  • 怎样做 建立自己做独立网站seo推广网络
  • 莱山做网站的公司电子商务seo名词解释
  • 外贸网站建设流程图东莞疫情最新数据
  • 做网站费用计入什么中铁建设集团有限公司
  • 网站规划和建设百度seo怎么提高排名
  • 网站后台 无法插入图片郑州网站关键词推广
  • 银行做网站视频重庆seo网络推广优化
  • 哪个网站可以做优惠券网站模版
  • 熊掌号网站怎么做宁波seo推荐推广渠道
  • 北京最大做网站的公司河北seo平台
  • 广东建筑企业100强麒麟seo
  • 阿里云域名注册邮箱安徽搜索引擎优化
  • 亚马逊品牌备案的网站怎么做百度热线客服24小时
  • 国内亲子游做的最好的网站免费推广途径与原因
  • 专门做杂志的网站有哪些免费引流微信推广
  • 公司网站网页制作建议网站自然排名优化
  • 企业网站页脚刷关键词排名软件
  • 企业网站优化三层含义简述网络营销的方法