Tikz 中的自定义直方图

Tikz 中的自定义直方图

我正在尝试在 Tikz 中创建下面的图片。我最不确定的是如何制作下面的直方图。它不需要具有完全相同的形状,但形状与下面的直方图相似。不幸的是,我没有底层数据集。在 Tikz 中制作它的最佳方法是什么?

在此处输入图片描述

答案1

这是为了给你一个开始。

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16,width=18cm,height=7cm}
\begin{document}
\begin{tikzpicture}[font=\sffamily]
 \begin{axis}[ybar,bar width=2.7mm,ylabel={Number of policies},yticklabel=$\mathsf{\pgfmathprintnumber{\tick}}$,
 xticklabel=$\mathsf{\pgfmathprintnumber{\tick}}$,xlabel={Score based on \dots}]
  \addplot[samples=50,domain=0:100,fill=yellow!20] {25*x*x*x*exp(-x/10)*(0.9+0.2*rnd)};
 \end{axis}
 \begin{axis}[axis y line=right,ylabel={Actual loss ratio},xtick=\empty,ymax=200,ymin=0,
 yticklabel=$\mathsf{\pgfmathprintnumber{\tick}}\,\%$]
  \addplot[samples=50,domain=0:100] {180-1.6*x+20*(rnd-0.5)};
 \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容