<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Sheenky的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/Sheenky</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; Sheenky]]></copyright><item><title><![CDATA[Numpy、Pandas使用大全与各参数详解]]></title><link>https://blog.csdn.net/Sheenky/article/details/131083132</link><guid>https://blog.csdn.net/Sheenky/article/details/131083132</guid><author>Sheenky</author><pubDate>Wed, 07 Jun 2023 11:29:42 +0800</pubDate><description><![CDATA[np.random.rand(), np.random.randn(), np.random.randint(),np.random.uniform(), np.random.normal(), ...：通过Python的随机函数进行array数据类型创建。np.sum(), np.mean(), np.median(), np.max(), np.min(), np.std(),...聚合函数。.max()/.min()/.mean()/.median()... .describe():数据分布与统计。]]></description><category></category></item><item><title><![CDATA[Spark基础知识梳理]]></title><link>https://blog.csdn.net/Sheenky/article/details/126321198</link><guid>https://blog.csdn.net/Sheenky/article/details/126321198</guid><author>Sheenky</author><pubDate>Sat, 13 Aug 2022 16:34:30 +0800</pubDate><description><![CDATA[spark解决的问题：海量数据的计算，可以进行离线批处理以及实时流计算spark模块：sparkcore、SQL、流计算（SparkStreaming）、图计算（Graphx）、机器学习（MLib）spark特点：速度快、使用简单、通用性强、多模式运行spark运行模式本地模式集群模式云模式spark的运行角色MASTER：集群资源管理者（类同ResourceManager)worker：单机资源管理者（类同NodeManager)......]]></description><category></category></item><item><title><![CDATA[Spark RDD简介以及算子使用大全]]></title><link>https://blog.csdn.net/Sheenky/article/details/125473515</link><guid>https://blog.csdn.net/Sheenky/article/details/125473515</guid><author>Sheenky</author><pubDate>Tue, 28 Jun 2022 14:48:23 +0800</pubDate><description><![CDATA[一、spark RDD（1）RDD简介RDD(Resilient Distributed Datasets)，弹性分布式数据集，是分布式内存的一个抽象概念。RDD提供了一种高度受限的共享内存模型，即RDD是只读的记录分区的集合，只能通过在其他RDD执行确定的转换操作（如map、join和group by）而创建，然而这些限制使得实现容错的开销很低。RDD具备像MapReduce等数据流模型的容错特性，并且允许开发人员在大型集群上执行基于内存的计算。RDD是只读的、分区记录的集合。RDD只能基于在稳定物理存储]]></description><category></category></item><item><title><![CDATA[猫狗图片识别（卷积神经网络（CNN）详解）]]></title><link>https://blog.csdn.net/Sheenky/article/details/125282134</link><guid>https://blog.csdn.net/Sheenky/article/details/125282134</guid><author>Sheenky</author><pubDate>Tue, 14 Jun 2022 22:42:17 +0800</pubDate><description><![CDATA[一、模型设计（1）卷积神经网络认识1，输入层（必须）。输入层是整个神经网络的输入，在处理图像的卷积神经网络中，它一般代表了一张图片的像素矩阵。比如在上图中最左侧的三维矩阵就是可以代表一张图片。其中三维矩阵的长和宽代表了图像的大小，而三维矩阵的深度代表了图像的色彩通道（channel）。比如黑白图片的深度为1，而在RGB色彩模式下，图像的深度为3。从输入层开始，卷积神经网络通过不同的神经网络结构将上一层的三维矩阵转化为下一层的三维矩阵，直到最后的全连接层。2，卷积层（视情况而定）。从名字就可以看出，卷积层是一]]></description><category></category></item><item><title><![CDATA[猫狗图像识别（卷积神经网络算法，TensorFlow安装）]]></title><link>https://blog.csdn.net/Sheenky/article/details/125199619</link><guid>https://blog.csdn.net/Sheenky/article/details/125199619</guid><author>Sheenky</author><pubDate>Thu, 09 Jun 2022 14:33:36 +0800</pubDate><description><![CDATA[一、tensorflow库安装（1）TensorFlow的历史版本与对应Python版本（2）Python版本查询win+R或者在搜索框搜索cmd打开Windows的终端，在终端输入python --version（3）找到上面的版本框进行对应的TensorFlow下载当时安装时并没有想到版本问题会影响TensorFlow后续的使用，就随便选了一个版本，当然你想选择一样的版本也行，后续做法跟我的做法会是一样的。这里我们从清华园下载TensorFlow的镜像文件,后面是版本号pip install -i ht]]></description><category></category></item><item><title><![CDATA[齐全且实用的MySQL函数使用大全]]></title><link>https://blog.csdn.net/Sheenky/article/details/125142451</link><guid>https://blog.csdn.net/Sheenky/article/details/125142451</guid><author>Sheenky</author><pubDate>Mon, 06 Jun 2022 20:37:47 +0800</pubDate><description><![CDATA[目录一、MySQL函数介绍二、MySQL函数分类（一）单行函数①字符串函数②数学函数③日期函数④流程控制函数⑤系统信息函数⑥其他函数（二）聚合函数三、函数使用示例（一）字符函数①length(str)函数②concat(str1,str2,...)函数③upper(str)、lower(str)函数④substr(str,start,len)函数⑤instr(str,要查找的子串)函数③trim(str)函数⑧lpad(str,len,填充字符)、rpad(str,len,填充字符)函数⑨replace(s]]></description><category></category></item><item><title><![CDATA[Notepad++软件下载以及Notepad++配置java环境]]></title><link>https://blog.csdn.net/Sheenky/article/details/125059456</link><guid>https://blog.csdn.net/Sheenky/article/details/125059456</guid><author>Sheenky</author><pubDate>Tue, 31 May 2022 12:35:54 +0800</pubDate><description><![CDATA[一、Notepad++软件下载

64位：https://pan.baidu.com/s/14cRU0EjD0BiPl5doYj6pMA
提取码：kwii

32位：https://pan.baidu.com/s/1IOYVoppbGoH1RdClVw0CYA
提取码：7kmi

软件是国外的软件，国内没有专用的通道提供下载，并在百度上找到的下载网站下载下来的都是乱七八糟的软件。上面是Notepad++下载地址，根据自己的电脑配置需求选择下载。

二、安装及使用

下载之后是一个压缩包，压缩包内涵所有的No]]></description><category></category></item><item><title><![CDATA[Python连接数据库用matplotlib画柱形图(bar())]]></title><link>https://blog.csdn.net/Sheenky/article/details/125043265</link><guid>https://blog.csdn.net/Sheenky/article/details/125043265</guid><author>Sheenky</author><pubDate>Mon, 30 May 2022 18:02:09 +0800</pubDate><description><![CDATA[目录

一、柱形图介绍

（1）介绍

（2）优点、缺点

（3）适用范围

二、数据介绍

（1）数据构成

（2）数据选取

三、python数据库连接配置以及数据提取设置

（1）调用库以及连接语法

（2）语法参数讲解

（3）数据提取设置

四、全局变量配置

（1）字体画布配置

（2）标题、标签设置

五、数据库数据画图

（1）画图函数调用并作出图形

（2）全代码

一、柱形图介绍

（1）介绍

柱状图（Histogram），也称条图（英文：bargraph）、长条图（英文：barcha]]></description><category></category></item><item><title><![CDATA[Python二级必考函数.format()函数]]></title><link>https://blog.csdn.net/Sheenky/article/details/125036176</link><guid>https://blog.csdn.net/Sheenky/article/details/125036176</guid><author>Sheenky</author><pubDate>Sun, 29 May 2022 23:24:47 +0800</pubDate><description><![CDATA[目录

一、format()函数介绍

二、函数运用

①位置填充

②填充物（fill）、对齐（align）、宽度（width）

③sign参数保留正负号

④指定精度（.nf）、分隔符（,）、进制（o,b,d,x）

一、format()函数介绍

format()函数用来收集其后的位置参数和关键字段参数，并用他们的值填充字符串中的占位符。通常format()函数配合print()函数达到强格式化的输出能力，在Python二级的考试中format()函数是必考科目，它是Python二级答题中的第一题.]]></description><category></category></item><item><title><![CDATA[MySQL图书管理系统设计]]></title><link>https://blog.csdn.net/Sheenky/article/details/124850392</link><guid>https://blog.csdn.net/Sheenky/article/details/124850392</guid><author>Sheenky</author><pubDate>Tue, 24 May 2022 23:44:44 +0800</pubDate><description><![CDATA[一、项目简介

本次实验的MySQL图书管理系统设计是针对后端数据使用、采集、更新的一个小项目，本次实验主要方向需求是建立一个图书管理系统，管理图书馆的图书信息以及学校人群的借书以及操作信息。

二、项目分析



三、项目实施



四、项目回顾总结
...]]></description><category></category></item><item><title><![CDATA[Python预处理之pandas、numpy介绍和常用函数使用]]></title><link>https://blog.csdn.net/Sheenky/article/details/124716291</link><guid>https://blog.csdn.net/Sheenky/article/details/124716291</guid><author>Sheenky</author><pubDate>Fri, 13 May 2022 13:59:59 +0800</pubDate><description><![CDATA[一、numpy基本介绍

1、什么是numpy

NumPy（Numerical Python）是Python的一种开源的数值计算扩展。这种工具可用来存储和处理大型矩阵，比Python自身的嵌套列表（nested list structure)结构要高效的多（该结构也可以用来表示矩阵（matrix）），支持大量的维度数组与矩阵运算，此外也针对数组运算提供大量的数学函数库。

2、numpy的数据结构

numpy的数据结构是ndarray，它是一种N维的数组类型，它描述了相同类型的“items”的集合，同时]]></description><category></category></item><item><title><![CDATA[Python使用plot()函数画图进阶使用]]></title><link>https://blog.csdn.net/Sheenky/article/details/124662362</link><guid>https://blog.csdn.net/Sheenky/article/details/124662362</guid><author>Sheenky</author><pubDate>Tue, 10 May 2022 20:56:02 +0800</pubDate><description><![CDATA[使用介绍

在前文《Python直接使用plot()函数画图》提到了matplotlib库中最简单的一个函数plot()函数，介绍plot()最简单的使用方法，包括plot()函数中的参数，画布的基础设置，简单的数据代入画图，本次进阶使用，我们会将其中的参数通过函数方法进行画图的设置，同时也会讲解多个折线图的绘画以及对数据的选择。

本次画图使用到的数据是2001年到2021年的作物产量变化数据。数据含有统计时间、粮食产量（万吨）、粮食产量增长（%）、棉花（万吨）、棉花增长（%）、油料（万吨）、油料增长（%]]></description><category></category></item><item><title><![CDATA[MySQL数据库安装教程]]></title><link>https://blog.csdn.net/Sheenky/article/details/124305331</link><guid>https://blog.csdn.net/Sheenky/article/details/124305331</guid><author>Sheenky</author><pubDate>Wed, 20 Apr 2022 20:29:49 +0800</pubDate><description><![CDATA[安装包下载

直接进入官网下载安装包https://dev.mysql.com/downloads/windows/installer/



点击download后出现如下情况选择No thanks,just start my download

​

选择No thanks,just start my download,选择保存的地方，最好是放在经常放安装包的磁盘便于查找，建议不放在C盘。





安装

1、打开后界面如下，选择默认安装，点击next

Developer Default（默认）..]]></description><category></category></item><item><title><![CDATA[MySQL数据库之基础查询语句（DQL数据查询语句）]]></title><link>https://blog.csdn.net/Sheenky/article/details/124081775</link><guid>https://blog.csdn.net/Sheenky/article/details/124081775</guid><author>Sheenky</author><pubDate>Wed, 20 Apr 2022 14:31:09 +0800</pubDate><description><![CDATA[数据库的基础查询语法：从数据表（单个表/多个表）中提取出满足特定条件的语句为查询语句。

基本的查询语法如下：


select 结果显示语句 from 需要查询的表 where 查询条件语句 结果处理语句;

基本的查询语句是通过select ...from .... where ....的形式呈现。同时，单表和多表的差别就在from 后面接的表格数目来确定的。

一、where子句

where子句：在删除、修改及查询的语句后都可以添加where⼦句（条件），⽤于筛选满⾜特定的添加的数据进⾏删除、修改和]]></description><category></category></item><item><title><![CDATA[MySQL数据库之DML数据操纵语言（insert、delete、update）]]></title><link>https://blog.csdn.net/Sheenky/article/details/124002272</link><guid>https://blog.csdn.net/Sheenky/article/details/124002272</guid><author>Sheenky</author><pubDate>Thu, 07 Apr 2022 20:01:31 +0800</pubDate><description><![CDATA[一、数据库插入语句insert

DML数据操纵中的插入语句insert，是对数据库中表数据插入数据所用的语句，它的组成是由insert into 表名称 需要插入列名（字段名） 对应字段的数据。

数据库插入语句重点事项：

（1）插入的数据条数可以是多条，每条数据用(),()隔开，例如：('张三','男',23,'老师'),('李四','女',20,'学生'),...

（2）插入的每条数据中含有的变量个数要与对应插入列的列名个数相同，例如；insert into table(name,gender,a]]></description><category></category></item><item><title><![CDATA[Python直接使用plot()函数画图]]></title><link>https://blog.csdn.net/Sheenky/article/details/123976807</link><guid>https://blog.csdn.net/Sheenky/article/details/123976807</guid><author>Sheenky</author><pubDate>Wed, 06 Apr 2022 21:37:19 +0800</pubDate><description><![CDATA[一、plot（）函数的认识

在使用Python进行数据可视化编程中matplotlib库是我们用来对数据进行画图常用的第三方库。其中含有各类函数也就是不同类型的图形，要使用matplotlib库中的函数就需要了解函数所需要数据的格式，这也是我们学习matplotlib库的重点。

直接使用plot（）函数画图，是对于一般的简单数据。我们可以采用直接调用plot（）函数对列表数据进行直接画图。初期学习直接使用plot（）函数能便于我们对后面图形学习奠定函数的参数及基础。

matplotlib图的组成：

]]></description><category></category></item><item><title><![CDATA[MySQL数据库之字段约束]]></title><link>https://blog.csdn.net/Sheenky/article/details/123957117</link><guid>https://blog.csdn.net/Sheenky/article/details/123957117</guid><author>Sheenky</author><pubDate>Tue, 05 Apr 2022 19:05:07 +0800</pubDate><description><![CDATA[一、约束介绍

MySQL约束：在创建数据表的时候，指定的对数据表的列的数据限制性的要求（对表的列（字段）中的数据进行限制）

表中的列（字段）添加约束有以下意义：

（1）保证数据的有效性（2）保证数据的完整性（3）保证数据的正确性

字段常⻅的约束：

⾮空约束（not null）：限制此列的值必须提供，不能为null（空值）
唯⼀约束（unique）：在表中的多条数据，此列的值不能重复
主键约束（primary key）：⾮空+唯⼀，能够唯⼀标识数据表中的⼀条数据
外键约束（foreign key）：]]></description><category></category></item><item><title><![CDATA[MySQL数据库之数据表操作（DDL数据定义语言）]]></title><link>https://blog.csdn.net/Sheenky/article/details/123943362</link><guid>https://blog.csdn.net/Sheenky/article/details/123943362</guid><author>Sheenky</author><pubDate>Sun, 03 Apr 2022 20:52:36 +0800</pubDate><description><![CDATA[一、创建数据表

数据表：一个二维的表格，一个表格是由多列组成，表格中的每一类称之为表格的字段

Student Information
	
			stu_num

			char(8)

			not null
			
			
			stu_name

			varchar(20)

			not null
			
			
			stu_gender

			char(2)

			not null
			
			
			stu_age

			int

			not null
			
			
			st]]></description><category></category></item><item><title><![CDATA[MySQL数据库之数据库操作（DDL数据定义语言）]]></title><link>https://blog.csdn.net/Sheenky/article/details/123941010</link><guid>https://blog.csdn.net/Sheenky/article/details/123941010</guid><author>Sheenky</author><pubDate>Sun, 03 Apr 2022 19:49:30 +0800</pubDate><description><![CDATA[一、SQL分类

根据SQL指令完成的数据库操作的不同，可以将SQL指令分为四类：

（1）DDL（Data Definition Language，数据定义语⾔）

用于完成对数据库对象（数据库数据表、视图、索引等）的创建、删除、修改

（2）DML（Data Manipulation Language，数据操作/操纵语⾔）

⽤于完成对数据表中的数据的添加、删除、修改操作
添加：将数据存储到数据表
删除：将数据从数据表移除
修改：对数据表中的数据进⾏修改（3）DQL（Data Query Languag]]></description><category></category></item></channel></rss>