【数据分析】描述性统计分析 - 直方图

一、什么是直方图

  • 由一批长方形构成,通过长方形的面积或高度来代表对应组在数据中所占的比例。
  • 用长方形的面积代表对应组的频数与组距的比时,则称为频率分布直方图;
  • 当用长方形的高代表对应组的频数时,则称为频数分布直方图
  • 但严格统计意义上的直方图都是指频率分布直方图 ,而且统计意义上的直方图没有纵向刻度

二、绘制直方图

三、Python 绘制直方图

1、使用 pandasnumpymatplotlib绘制直方图

python 复制代码
# Using pandas, numpy, matplotlib to draw histograms
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import matplotlib

# set the backend of matplotlib to TkAgg
matplotlib.use('TkAgg')

data = pd.DataFrame({
    # Generate 1000 random numbers with a standard normal distribution
    'Values': pd.Series(np.random.randn(1000))
})

# Draw a histogram
data['Values'].plot.hist(bins=30, alpha=0.5, color='lightblue',
                        edgecolor='darkblue')


# set chart title and axis labels
plt.title('Histogram of Values')
plt.xlabel('Value')
plt.ylabel('Frequency')

# display chart
plt.show()

2、使用 pandasnumpymatplotlib绘制直方图

python 复制代码
# Using plotly.express to draw histograms
import plotly.express as px
import pandas as pd
import numpy as np
# data = [1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]

data = pd.DataFrame({
    'Values': pd.Series(np.random.randn(1000))
})
# Nbins defines the number of boxes in the histogram
fig = px.histogram(data, nbins=80,
                   color_discrete_sequence=['blue'],
                   labels={'Values': 'Value'},
                   title='Histogram of Values',
                   # marginal="box"
                   )

fig.update_traces(
    marker=dict(
        color='lightblue',
        opacity=0.75,
        line=dict(
            color='darkblue',
            width=1
        )
    )
)

# display chart
fig.show()

3、使用 pandasnumpydash****和 plotly.express绘制直方图

python 复制代码
# Using dash, plotly.express to draw histogram
import dash
import numpy as np
import pandas as pd
from dash import html, dcc
import plotly.express as px

# create a dash application
app = dash.Dash(__name__)

# create as list
# data = [1, 2, 2, 2, 2, 3, 4, 5, 5, 5, 6, 7, 8, 8, 8, 9, 9, 10, 10, 10, 11, 12, 12, 12, 13, 14, 12, 15, 15, 16, 17, 18, 18, 18, 19, 19, 20, 20, 20]
data = pd.DataFrame({
    'Values': pd.Series(np.random.randn(1000))
})

# use plotly.express to draw histogram
fig = px.histogram(data, nbins=60,
                    color_discrete_sequence=['blue'],
                    labels={'Values': 'Value'},
                    title='Histogram of Values',
                    # marginal="box",
                    )

fig.update_traces(
    marker=dict(
        color='lightblue',
        opacity=0.75,
        line=dict(
            color='darkblue',
            width=1
        )
    )
)

# define application layout
app.layout = html.Div([
    html.H1('Dash Histogram Example'),
    dcc.Graph(figure=fig)
])

# run the application
if __name__ == '__main__':
    app.run_server(debug=True)
相关推荐
落魄君子3 小时前
GA-BP回归-遗传算法(Genetic Algorithm)和反向传播神经网络(Backpropagation Neural Network)
神经网络·数据挖掘·回归
martian6653 小时前
【人工智能数学基础】——深入详解贝叶斯理论:掌握贝叶斯定理及其在分类和预测中的应用
人工智能·数学·分类·数据挖掘·贝叶斯
图表制作解说(目标1000个图表)3 小时前
ECharts散点图-气泡图,附视频讲解与代码下载
echarts·统计分析·数据可视化·散点图·大屏可视化
終不似少年遊*4 小时前
美国加州房价数据分析01
人工智能·python·机器学习·数据挖掘·数据分析·回归算法
界面开发小八哥7 小时前
「实战应用」如何用图表控件SciChart WPF实现应用程序的DPI感知?
信息可视化·wpf·数据可视化·图表·scichart wpf·scichart
梦想画家8 小时前
DuckDB:pg_duckdb集成DuckDB和PostgreSQL实现高效数据分析
postgresql·数据分析·duckdb·pg_duckdb
終不似少年遊*10 小时前
美国加州房价数据分析02
人工智能·python·机器学习·数据挖掘·数据分析·回归算法
BJ_bafangonline11 小时前
SPSS上传数据有缺失怎么办?
数据分析
Anlici13 小时前
three.js建立3D模型展示地球+高亮
前端·数据可视化·canvas
赵钰老师14 小时前
【R语言遥感技术】“R+遥感”的水环境综合评价方法
开发语言·数据分析·r语言