Python酷库之旅-第三方库Pandas(133)

news2024/10/6 3:44:36

目录

一、用法精讲

596、pandas.DataFrame.plot.density方法

596-1、语法

596-2、参数

596-3、功能

596-4、返回值

596-5、说明

596-6、用法

596-6-1、数据准备

596-6-2、代码示例

596-6-3、结果输出

597、pandas.DataFrame.plot.hexbin方法

597-1、语法

597-2、参数

597-3、功能

597-4、返回值

597-5、说明

597-6、用法

597-6-1、数据准备

597-6-2、代码示例

597-6-3、结果输出

598、pandas.DataFrame.plot.hist方法

598-1、语法

598-2、参数

598-3、功能

598-4、返回值

598-5、说明

598-6、用法

598-6-1、数据准备

598-6-2、代码示例

598-6-3、结果输出

599、pandas.DataFrame.plot.kde方法

599-1、语法

599-2、参数

599-3、功能

599-4、返回值

599-5、说明

599-6、用法

599-6-1、数据准备

599-6-2、代码示例

599-6-3、结果输出

600、pandas.DataFrame.plot.line方法

600-1、语法

600-2、参数

600-3、功能

600-4、返回值

600-5、说明

600-6、用法

600-6-1、数据准备

600-6-2、代码示例

600-6-3、结果输出

二、推荐阅读

1、Python筑基之旅

2、Python函数之旅

3、Python算法之旅

4、Python魔法之旅

5、博客个人主页

一、用法精讲

596、pandas.DataFrame.plot.density方法
596-1、语法
# 596、pandas.DataFrame.plot.density方法
pandas.DataFrame.plot.density(bw_method=None, ind=None, **kwargs)
Generate Kernel Density Estimate plot using Gaussian kernels.

In statistics, kernel density estimation (KDE) is a non-parametric way to estimate the probability density function (PDF) of a random variable. This function uses Gaussian kernels and includes automatic bandwidth determination.

Parameters:
bw_method
str, scalar or callable, optional
The method used to calculate the estimator bandwidth. This can be ‘scott’, ‘silverman’, a scalar constant or a callable. If None (default), ‘scott’ is used. See scipy.stats.gaussian_kde for more information.

ind
NumPy array or int, optional
Evaluation points for the estimated PDF. If None (default), 1000 equally spaced points are used. If ind is a NumPy array, the KDE is evaluated at the points passed. If ind is an integer, ind number of equally spaced points are used.

**kwargs
Additional keyword arguments are documented in DataFrame.plot().

Returns:
matplotlib.axes.Axes or numpy.ndarray of them.
596-2、参数

596-2-1、bw_method(可选,默认值为None)str、float或callable,表示控制核密度估计中使用的带宽(bandwidth),即平滑程度。

  • 如果是str,它可以取值'scott'或'silverman',表示使用Scott’s或Silverman’s规则来估计带宽。
  • 如果是float,表示手动设置带宽大小,数值越小曲线越陡峭,越大则越平滑。
  • 如果是callable,可以自定义带宽函数。
  • 默认为None,这时默认使用Scott’s规则来估计带宽。

596-2-2、ind(可选,默认值为None)numpy.array或整数,指定用于估计密度的采样点。

  • 如果是numpy.array,则该数组表示用于绘制曲线的点。
  • 如果是整数,则该值表示用来计算密度估计的点数,默认情况下会在数据范围内生成这些点。
  • 如果是None,则默认会生成1000个等间隔的点用于密度估计。

596-2-3、**kwargs(可选)其他传递给绘图函数的关键字参数,如设置颜色、线条样式等,它们会传递给matplotlib库的plot()函数。

596-3、功能

        可以帮助可视化DataFrame中列的概率分布,通过绘制核密度曲线,可以平滑地展示数据的分布趋势,避免了直方图由于区间选择而带来的误导。

596-4、返回值

        返回的是一个AxesSubplot对象,它是matplotlib中的一个绘图区域,可以用于进一步的定制化处理和显示。

596-5、说明

        无

596-6、用法
596-6-1、数据准备
596-6-2、代码示例
# 596、pandas.DataFrame.plot.density方法
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 生成一个随机数据集
np.random.seed(0)
data = np.random.normal(loc=0, scale=1, size=1000)
# 将数据放入DataFrame
df = pd.DataFrame(data, columns=['Values'])
# 绘制核密度估计曲线
df['Values'].plot.density(bw_method='scott', color='blue', linestyle='-', linewidth=2)
# 添加标题和标签
plt.title('Density Plot of Values')
plt.xlabel('Value')
plt.ylabel('Density')
# 显示图形
plt.show()
596-6-3、结果输出
# 596、pandas.DataFrame.plot.density方法
见图1

图1:

 

597、pandas.DataFrame.plot.hexbin方法
597-1、语法
# 597、pandas.DataFrame.plot.hexbin方法
pandas.DataFrame.plot.hexbin(x, y, C=None, reduce_C_function=None, gridsize=None, **kwargs)
Generate a hexagonal binning plot.

Generate a hexagonal binning plot of x versus y. If C is None (the default), this is a histogram of the number of occurrences of the observations at (x[i], y[i]).

If C is specified, specifies values at given coordinates (x[i], y[i]). These values are accumulated for each hexagonal bin and then reduced according to reduce_C_function, having as default the NumPy’s mean function (numpy.mean()). (If C is specified, it must also be a 1-D sequence of the same length as x and y, or a column label.)

Parameters:
xint or str
The column label or position for x points.

yint or str
The column label or position for y points.

Cint or str, optional
The column label or position for the value of (x, y) point.

reduce_C_functioncallable, default np.mean
Function of one argument that reduces all the values in a bin to a single number (e.g. np.mean, np.max, np.sum, np.std).

gridsizeint or tuple of (int, int), default 100
The number of hexagons in the x-direction. The corresponding number of hexagons in the y-direction is chosen in a way that the hexagons are approximately regular. Alternatively, gridsize can be a tuple with two elements specifying the number of hexagons in the x-direction and the y-direction.

**kwargs
Additional keyword arguments are documented in DataFrame.plot().

Returns:
matplotlib.AxesSubplot
The matplotlib Axes on which the hexbin is plotted.
597-2、参数

597-2-1、x(必须)字符串或Series,代表DataFrame中的列名或Series,用作X轴坐标的数据。

597-2-2、y(必须)字符串或Series,代表DataFrame中的列名或Series,用作Y轴坐标的数据。

597-2-3、C(可选,默认值为None)字符串、Series或None,该参数用于设置与六边形区域颜色相关的值。例如,如果你传递一个数值型列名,颜色将根据这个列的值进行调整,而不是简单地统计每个区域的点数。如果为None,则颜色表示在每个六边形中的点数。

597-2-4、reduce_C_function(可选,默认值为None)函数或None,该参数用于对C 值进行聚合的函数。如果提供C参数,则使用该函数来聚合位于同一六边形内的多个C值。例如,可以使用np.sum来计算每个六边形区域的总和。

597-2-5、gridsize(可选,默认值为None)整数,定义在X轴方向上的六边形网格大小,影响六边形的数量。值越大,生成的六边形越多,图像分辨率越高;值越小,六边形越少,图像越粗略。

597-2-6、**kwargs(可选)其他关键词参数,可以用来进一步定制图表。例如,colorbar=True用于显示颜色条,gridsize控制六边形的数量,cmap设置颜色映射等。

597-3、功能

        使用六边形的网格而不是传统的矩形来聚类点,与散点图不同,hexbin图在处理大量重叠数据点时更加清晰。每个六边形的颜色强度代表其中点的数量或点的某种属性值(当指定C和reduce_C_function时)。

597-4、返回值

        返回一个matplotlib.AxesSubplot对象,该对象包含生成的图,可以进一步修改和自定义。例如,用户可以添加标题、坐标轴标签等。

597-5、说明

        无

597-6、用法
597-6-1、数据准备
597-6-2、代码示例
# 597、pandas.DataFrame.plot.hexbin方法
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 生成随机数据
np.random.seed(0)
n = 10000
x = np.random.standard_normal(n)
y = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n)
# 创建DataFrame
df = pd.DataFrame({'x': x, 'y': y})
# 绘制hexbin图
df.plot.hexbin(x='x', y='y', gridsize=50, cmap='Blues')
# 添加标题和标签
plt.title('Hexbin Plot')
plt.xlabel('X')
plt.ylabel('Y')
# 显示图形
plt.show()
597-6-3、结果输出
# 597、pandas.DataFrame.plot.hexbin方法
见图2

图2:

 

598、pandas.DataFrame.plot.hist方法
598-1、语法
# 598、pandas.DataFrame.plot.hist方法
pandas.DataFrame.plot.hist(by=None, bins=10, **kwargs)
Draw one histogram of the DataFrame’s columns.

A histogram is a representation of the distribution of data. This function groups the values of all given Series in the DataFrame into bins and draws all bins in one matplotlib.axes.Axes. This is useful when the DataFrame’s Series are in a similar scale.

Parameters:
bystr or sequence, optional
Column in the DataFrame to group by.

Changed in version 1.4.0: Previously, by is silently ignore and makes no groupings

binsint, default 10
Number of histogram bins to be used.

**kwargs
Additional keyword arguments are documented in DataFrame.plot().

Returns:
class:
matplotlib.AxesSubplot
Return a histogram plot.
598-2、参数

598-2-1、by(可选,默认值为None)字符串、序列或None,用于分组绘图,by参数可以指定一个列名或多个列名,根据这些列进行分组,并分别为每个分组生成直方图。例如,如果by='category',将为每个类别绘制一个独立的直方图。

598-2-2、bins(可选,默认值为10)整数、序列或None,指定直方图中的箱数,整数值指定箱的数量,序列指定箱的边界,如果未指定,则默认为将数据分成10个区间。

598-2-3、**kwargs(可选)其他关键字参数,用于传递额外的自定义参数,可以用来进一步定制图表。例如:

  • grid:是否显示网格,默认True。
  • xlabelsize/ylabelsize:设置x和y轴标签的大小。
  • title:设置图形标题。
  • color:指定颜色或颜色序列。
  • alpha:设置颜色的透明度。
598-3、功能

        用于绘制直方图,直方图是一种用来显示数值数据分布的图表,它通过将数据分组到不同的区间(bins),并统计每个区间的频数,来反映数据的分布情况,直方图通常用于单变量的可视化分析。

598-4、返回值

        返回一个matplotlib.AxesSubplot对象,该对象包含生成的直方图,可以进一步修改和自定义。例如,用户可以通过添加标题、坐标轴标签,调整颜色等方式来对图表进行调整。

598-5、说明

        无

598-6、用法
598-6-1、数据准备
598-6-2、代码示例
# 598、pandas.DataFrame.plot.hist方法
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 生成随机数据
np.random.seed(0)
data = pd.DataFrame({
    'A': np.random.randn(1000),  # 正态分布数据
    'B': np.random.randn(1000) + 1  # 均值不同的正态分布
})
# 绘制直方图
data.plot.hist(bins=20, alpha=0.7)
# 添加标题和标签
plt.title('Histogram of A and B')
plt.xlabel('Value')
plt.ylabel('Frequency')
# 显示图形
plt.show()
598-6-3、结果输出
# 598、pandas.DataFrame.plot.hist方法
见图3

图3:

 

599、pandas.DataFrame.plot.kde方法
599-1、语法
# 599、pandas.DataFrame.plot.kde方法
pandas.DataFrame.plot.kde(bw_method=None, ind=None, **kwargs)
Generate Kernel Density Estimate plot using Gaussian kernels.

In statistics, kernel density estimation (KDE) is a non-parametric way to estimate the probability density function (PDF) of a random variable. This function uses Gaussian kernels and includes automatic bandwidth determination.

Parameters:
bw_method
str, scalar or callable, optional
The method used to calculate the estimator bandwidth. This can be ‘scott’, ‘silverman’, a scalar constant or a callable. If None (default), ‘scott’ is used. See scipy.stats.gaussian_kde for more information.

ind
NumPy array or int, optional
Evaluation points for the estimated PDF. If None (default), 1000 equally spaced points are used. If ind is a NumPy array, the KDE is evaluated at the points passed. If ind is an integer, ind number of equally spaced points are used.

**kwargs
Additional keyword arguments are documented in DataFrame.plot().

Returns:
matplotlib.axes.Axes or numpy.ndarray of them.
599-2、参数

599-2-1、bw_method(可选,默认值为None)字符串、标量或可调用函数,控制估计过程中的核密度带宽,bw_method指定带宽选择的方法,参数可以是'scott'、'silverman'、浮点数或用户自定义函数。如果为None,默认使用'scott'方法,带宽控制着曲线的平滑程度,较小的带宽会产生更为波动的估计曲线,而较大的带宽则会产生更平滑的估计曲线。

599-2-2、ind(可选,默认值为None)数组或整数,定义KDE曲线的评估点数,整数值ind定义将曲线评估的点数。默认情况下,ind会根据数据的范围自动创建1000个等间距的点,如果提供数组,它将被用作评估点。

599-2-3、**kwargs(可选)其他关键字参数,用于传递额外的自定义参数,可以用来进一步定制图表。例如:

  • color:指定曲线颜色。
  • title:设置图形标题。
  • xlabel/ylabel:设定X和Y轴的标签。
  • linewidth:设定曲线的宽度。
599-3、功能

        核密度估计(KDE)提供了一种平滑数据分布的方式,它适用于可视化单变量分布,对数据的概率密度进行估计,而不依赖于将数据聚集到离散的箱中(如直方图)。

599-4、返回值

        返回一个matplotlib.AxesSubplot对象,包含生成的KDE曲线,可以用于进行进一步的修改和自定义。

599-5、说明

        无

599-6、用法
599-6-1、数据准备
599-6-2、代码示例
# 599、pandas.DataFrame.plot.kde方法
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 生成随机数据
np.random.seed(0)
data = pd.DataFrame({
    'A': np.random.normal(loc=0, scale=1, size=1000),  # 标准正态分布
    'B': np.random.normal(loc=1, scale=0.5, size=1000)  # 均值为1的正态分布
})
# 绘制KDE曲线
data.plot.kde(bw_method='scott')
# 添加标题和标签
plt.title('KDE of A and B')
plt.xlabel('Value')
plt.ylabel('Density')
# 显示图形
plt.show()
599-6-3、结果输出
# 599、pandas.DataFrame.plot.kde方法
见图4

图4:

 

600、pandas.DataFrame.plot.line方法
600-1、语法
# 600、pandas.DataFrame.plot.line方法
pandas.DataFrame.plot.line(x=None, y=None, **kwargs)
Plot Series or DataFrame as lines.

This function is useful to plot lines using DataFrame’s values as coordinates.

Parameters:
x
label or position, optional
Allows plotting of one column versus another. If not specified, the index of the DataFrame is used.

y
label or position, optional
Allows plotting of one column versus another. If not specified, all numerical columns are used.

color
str, array-like, or dict, optional
The color for each of the DataFrame’s columns. Possible values are:

A single color string referred to by name, RGB or RGBA code,
for instance ‘red’ or ‘#a98d19’.

A sequence of color strings referred to by name, RGB or RGBA
code, which will be used for each column recursively. For instance [‘green’,’yellow’] each column’s line will be filled in green or yellow, alternatively. If there is only a single column to be plotted, then only the first color from the color list will be used.

A dict of the form {column namecolor}, so that each column will be
colored accordingly. For example, if your columns are called a and b, then passing {‘a’: ‘green’, ‘b’: ‘red’} will color lines for column a in green and lines for column b in red.

**kwargs
Additional keyword arguments are documented in DataFrame.plot().

Returns:
matplotlib.axes.Axes or np.ndarray of them
An ndarray is returned with one matplotlib.axes.Axes per column when subplots=True.
600-2、参数

600-2-1、x(可选,默认值为None)字符串或整数,指定DataFrame中用作x轴的数据列,如果为None,则默认使用DataFrame的索引作为x轴,可以通过列的名称(字符串)或列的编号(整数)来指定。

600-2-2、y(可选,默认值为None)字符串、整数或列表,指定DataFrame中用作y轴的数据列,可以是单个列名或列号,也可以是一个列表,表示多个列,如果为None,将绘制所有数值列的折线图。

600-2-3、**kwargs(可选)其他关键字参数,其他自定义参数,用于控制图表的细节和样式。这些参数包括但不限于:

  • color:指定折线的颜色。例如'blue'。
  • title:设置图形的标题。
  • xlabel/ylabel:设置x轴和y轴的标签。
  • linewidth:设置折线的宽度,默认值为1.5。
  • figsize:控制图形的大小,格式为(宽度, 高度)
600-3、功能

        用于将DataFrame的数据以折线图的形式可视化,折线图非常适合展示趋势或随时间变化的数据,通常用于观察一个或多个变量在x轴值上的变化情况。

600-4、返回值

        返回一个matplotlib.AxesSubplot对象,包含生成的折线图,用户可以基于此对象进一步进行自定义操作,如调整图形布局、添加注释或保存图像。

600-5、说明

        无

600-6、用法
600-6-1、数据准备
600-6-2、代码示例
# 600、pandas.DataFrame.plot.line方法
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 生成随机数据
np.random.seed(0)
data = pd.DataFrame({
    'Year': np.arange(2000, 2024),  # x 轴数据:年份
    'Sales_A': np.random.randint(100, 200, size=24),  # y 轴数据:销售额 A
    'Sales_B': np.random.randint(150, 250, size=24)   # y 轴数据:销售额 B
})
# 绘制折线图,Year为x轴,Sales_A和Sales_B为y轴
data.plot.line(x='Year', y=['Sales_A', 'Sales_B'], linewidth=2, color=['blue', 'green'])
# 添加标题和标签
plt.title('Sales Trend from 2000 to 2023')
plt.xlabel('Year')
plt.ylabel('Sales')
# 显示图形
plt.show()
600-6-3、结果输出
# 600、pandas.DataFrame.plot.line方法
见图5

图5:

 

二、推荐阅读

1、Python筑基之旅
2、Python函数之旅
3、Python算法之旅
4、Python魔法之旅
5、博客个人主页

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2191047.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

如何向文科生解释什么是计算机的缓存

缓存(Cache)是计算机系统中的一个至关重要的技术概念,用于提高数据访问的速度。我们可以把缓存想象成一个临时的存储区域,它存放着系统中常用或最近使用的数据,以便快速访问,而不必每次都从速度较慢的原始数…

HTB:Synced[WriteUP]

目录 连接至HTB服务器并启动靶机 1.What is the default port for rsync? 2.How many TCP ports are open on the remote host? 3.What is the protocol version used by rsync on the remote machine? 4.What is the most common command name on Linux to interact w…

showdoc二次开发

showdoc用的vue版本老,需要安装老版本nodejs,比如node 14.21.3 win32-x64-93_binding.node问题 https://github.com/sass/node-sass/releases 下载 web_src\node_modules\node-sass\vendor\win32-x64-93 下面重命名为binding.node

HTML+CSS之过度,变形,动画(14个案例+代码+效果图)

目录 过渡 (Transitions) transition-property: 案例:鼠标悬浮方逐渐放大 1.代码 2.效果 transition-duration: 案例:鼠标悬停逐渐慢慢放大 1.代码 2.效果 transition-timing-function: 案例:放大速度为ease-out 1.代码 2.效果 transition-de…

【无人机设计与技术】基于EKF的四旋翼无人机姿态估计matlab仿真

摘要: 本文设计了一种基于扩展卡尔曼滤波(EKF)的四旋翼无人机姿态估计方法。利用EKF算法处理四旋翼无人机姿态的动态模型,通过该滤波算法实现对姿态的实时估计和校正。该方法通过对无人机的运动学和动力学模型的分析,…

新编英语语法教程

新编英语语法教程 1. 新编英语语法教程 (第 6 版) 学生用书1.1. 目录1.2. 电子课件 References A New English Grammar Coursebook 新编英语语法教程 (第 6 版) 学生用书新编英语语法教程 (第 6 版) 教师用书 1. 新编英语语法教程 (第 6 版) 学生用书 https://erp.sflep.cn/…

Python从入门到高手5.1节-Python简单数据类型

目录 5.1.1 理解数据类型 5.1.2 Python中的数据类型 5.1.3 Python简单数据类型 5.1.4 特殊的空类型 5.1.5 Python变量的类型 5.1.6 广州又开始变热 5.1.1 理解数据类型 数据类型是根据数据本身的性质和特征来对数据进行分类,例如奇数与偶数就是一种数据类型。…

软件测试:postman详解

一、Postman背景介绍 用户在开发或者调试网络程序或者是网页B/S模式的程序的时候是需要一些方法来跟踪网页请求的,用户可以使用一些网络的监视工具比如著名的Firebug等网页调试工具。今天给大家介绍的这款网页调试工具不仅可以调试简单的css、html、脚本等简单的网…

自动驾驶系列—全面解析自动驾驶线控制动技术:智能驾驶的关键执行器

🌟🌟 欢迎来到我的技术小筑,一个专为技术探索者打造的交流空间。在这里,我们不仅分享代码的智慧,还探讨技术的深度与广度。无论您是资深开发者还是技术新手,这里都有一片属于您的天空。让我们在知识的海洋中…

小阿轩yx-案例:jenkins部署Maven和NodeJS项目

小阿轩yx-案例:jenkins部署Maven和NodeJS项目 前言 在 Java 项目开发中,项目的编译、测试、打包等是比较繁琐的,属于重复劳动的工作,浪费人力和时间成本。以往开发项目时,程序员往往需要花较多的精力在引用 jar 包搭…

8月AI绘画方向APP用户量及人均时长排行榜

全球用户量Top10(APP) 排名 产品名 分类 8月MAU 上月对比 1 Remini 人工智能修图 29.14M -0.88% 2 FaceApp AI 人脸编辑器 26.46M 0.14% 3 Hypic Photo Editor & AI Art 17.37M 5.74% 4 AI Mirror AI Art Photo Editor 16.81…

【第三版 系统集成项目管理工程师】第16章 监理基础知识

持续更新。。。。。。。。。。。。。。。 【第三版】第十六章 监理基础知识 16.1 监理的意义和作用1.监理的地位和作用(非重点)-P5692.监理的重要性与迫切性-P5703.监理技术参考模型-P570 16.2 监理相关概念1.信息系统工程监理-P5722.信息系统工程监理单位-P5723.业主单位-P57…

LeNet学习

Lenet是一个 7 层的神经网络,包含 3 个卷积层,2 个池化层,1 个全连接层。其中所有卷积层的所有卷积核都为 5x5,步长 strid1,池化方法都为全局 pooling,激活函数为 Sigmoid,网络结构如下&#xf…

25重庆长安深蓝控制器开发面试经验 深蓝最常见面试问题总结

【面试经历】 秋招气氛组选手的第一场面试,9.17网申,9.24电话约面,9.26线上面试。问得很细,全长约1个小时 1. 自我介绍、项目介绍 2.项目细节,遇到了哪些困难;有没有PCB设计经验DC-DC芯片选型,电源噪声的原因、怎么消除、 3.画BUCK和BOOST拓扑图,讲原理 4.了解MCU的主…

ffmpeg面向对象——拉流协议匹配机制探索

目录 1.URLProtocol类2.协议匹配的基础接口3. URLContext类4. 综合调用流程图5.rtsp拉流协议匹配流程图及对象图5.1 rtsp拉流协议调用流程图5.2 rtsp拉流协议对象图 6.本地文件调用流程图及对象图6.1 本地文件调用流程图6.2 本地文件对象图 7.内存数据调用流程图及对象图7.1 内…

李宏毅深度学习-梯度下降和Batch Normalization批量归一化

Gradient Descent梯度下降 ▽ -> 梯度gradient -> vector向量 -> 下图中的红色箭头(loss等高线的法线方向) Tip1: Tuning your learning rates Adaptive Learning Rates自适应lr 通常lr会越来越小 Adaptive Learning Rates中每个参数都给它不…

基于依赖注入技术的.net core WebApi框架创建实例

依赖注入(Dependency Injection, DI)是一种软件设计模式,用于实现控制反转(Inversion of Control, IoC)。在ASP.NET Core中,依赖注入是内置的核心功能之一。它允许你将应用程序的组件解耦和配置&#xff0c…

【JAVA开源】基于Vue和SpringBoot的服装生产管理系统

本文项目编号 T 066 ,文末自助获取源码 \color{red}{T066,文末自助获取源码} T066,文末自助获取源码 目录 一、系统介绍二、演示录屏三、启动教程四、功能截图五、文案资料5.1 选题背景5.2 国内外研究现状5.3 可行性分析 六、核心代码6.1 查…

【LVGL进阶日记】① 开源LVGL在MCU上的移植

关注+星标公众号,不错过精彩内容 作者 | 量子君 微信公众号 | 极客工作室 【LVGL进阶日记】专栏目录 第一章 开源LVGL在MCU上的移植 文章目录 前言一、LVGL介绍1.1 LVGL的主要特性如下:1.2 LVGL对MCU的要求如下:二、移植LittlevGL到MCU2.1 LVGL源码下载和文件组织2.2 LVGL配…

【AI人工智能】文心智能体,你的情诗小助理,哄女朋友必备, 低代码工作流易上手,干货满满,不容错过哦

💪🏻 1. Python基础专栏,基础知识一网打尽,9.9元买不了吃亏,买不了上当。 Python从入门到精通 😁 2. 毕业设计专栏,毕业季咱们不慌忙,几百款毕业设计等你选。 ❤️ 3. Python爬虫专栏…