数据分析案例(口罩厂亏损)—-明确目的

人工智能19

数据分析前需了解的基础知识

1.jupyter代码编辑器
2.pandas库基础知识
3.数据分析流程

pandas库

pandas库是一个专门用来解决数据分析问题的库,其有两大优点
1.速度快,可以快速处理大型数据集
2.效率高,能够提供大量高效处理数据的函数和方法

pandas库提供了两种数据结构

Series和DataFrame,来提升操作速度和效率

1.Series主要由一组数据及其对应的索引组成

比如:['张三','李四','王五'] ['0','1','2']这两组列表的数据为两两对应的
例:

`
 temp_list1=[1,2,3,4]
 temp_list2=[5,6,7,8]

 temp_s=pd.Series(temp_list1)+pd.Series(temp_list2)

 temp_s

2.DataFrame对象是一种表格型的数据结构,包含行索引,列索引和一组数据

例:

年龄018115216

综上,思维导图:
数据分析案例(口罩厂亏损)—-明确目的

; 数据分析流程

一般来说有五个步骤
1.目标明确
2.数据处理
3.数据分析
4.数据展现
5.报告撰写

明确目标:在这一步中,您需要知道在此数据分析任务中需要解决哪些问题以及如何解决这些问题。

[En]

Clear goals: in this step, you need to know what problems need to be solved in this data analysis task and how to solve them.

数据处理:明确目标后,要对数据进行清理和整合,使数据干净、规范,以便以后进行分析。

[En]

Data processing: after defining the goal, it is necessary to clean and integrate the data to make the data clean and regular, so that the data can be analyzed later.

数据分析:在对数据进行处理后,可以对数据进行分析,最终得到解决问题的策略。

[En]

Data analysis: after the data has been processed, the data can be analyzed and finally the strategy to solve the problem can be obtained.

数据展现:在对数据进行分析后,需要将数据分析员所表达的观点以表格或图表的形式直观有效地传达出来。

[En]

Data presentation: after analyzing the data, it is necessary to convey the views expressed by the data analyst intuitively and effectively in the form of tables or charts.

报告写作:在对数据进行分析和展示后,需要对整个过程进行梳理和总结。

[En]

Report writing: after the analysis and presentation of the data, the whole process needs to be combed and summarized.

数据分析案例(口罩厂亏损)—-明确目的

Original: https://blog.csdn.net/m0_54812370/article/details/123867784
Author: Hello world !
Title: 数据分析案例(口罩厂亏损)----明确目的

相关文章
树莓派 USB麦克风 录音 人工智能

树莓派 USB麦克风 录音

USB麦克风 检查树莓派是否正确识别麦克风 麦克风插上树莓派,然后输入: lsusb 或者输入: arecord -l 安装一些辅助软件 首先更新软件列表: sudo apt-get update 然...
密度峰值聚类算法 人工智能

密度峰值聚类算法

文章目录 前言 一、DPC是什么? 二、算法参数介绍 * 1.局部密度 2.距离 3.代码部分 * 3.1 导入数据包 3.2 计算数据点两两之间的距离 3.3找到密度计算的阈值dc 3.4 计算每个...
AI+语音方面总结(一) 人工智能

AI+语音方面总结(一)

开始总结语音相关知识点 1、语音分离和增强的本质是什么? a) 一个是分类,一个是回归。 b) 分类和回归的区别在于输出变量的类型。定量输出称为回归,或者说连续变量预测;定性输出称为分类,或者说是离散...
K210学习笔记——孤立词识别 人工智能

K210学习笔记——孤立词识别

文章目录 前言 孤立词是什么? 使用步骤 * 类(class) 方法(function) 孤立词识别 前言 isolated_word这是一个孤立词识别的算法模块,用户通过录音生成词汇模板加载到模块中...