自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 Python常用数据处理笔记

数据读取df=pd.read_excel()df=pd.read_csv('target_file.csv',encoding='utf8')column选取df['column1']df[['column1','column2']]df[0:n] #取第0到n-1行df[['column1','column2']].iloc[0:2]df[['column1','column2']][df['column']>1000].head(100) #按照条件查询,相当于if....

2020-07-21 17:25:49 175

原创 R-data visualisation

1:bar chartbarplot(y, names.arg = x,xlab = "x", ylab = "y")# orlibrary(ggplot2)ggplot(data.frame) + geom_bar(aes(x = x, y = y), stat = "identity")y variable is a column in the dataset stat=“iden...

2020-01-09 03:43:13 158

原创 SQL学习——经典50道习题练习

SQL经典练习题50题1:查询" 01 “课程比” 02 "课程成绩高的学生的信息及课程分数mysql> select a.* ,b.Score as score_01,c.Score as socre_02 from Student a -> join SC b on b.Sid=a.Sid and b.CId='01' ...

2020-01-07 00:50:08 755

原创 K-NN笔记1.0

k-NN(the k-nearest neighbors algorithm): ia a nonparametric statistics (instance-based)used for classification and regression(robust and versatile )FeatureOutputClassificationClassRegre...

2019-11-18 06:52:44 195 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除