使用Altair和Jupyter进行绘图时,如何在Axis标签中显示希腊字母?

如何在Altair中写希腊字母?我需要为轴标签使用一些符号.我正在使用Jupyter笔记本

解决方法:

您可以通过在轴上使用Greek Unicode的符号来在轴上显示希腊字母.

工作示例:

import altair as alt
from vega_datasets import data
unicode_gamma = '\u03b3'
# for the notebook only (not for JupyterLab) run this command once per session
alt.renderers.enable('notebook')

iris = data.iris()


alt.Chart(iris).mark_point().encode(
    x=alt.X('petalLength', axis=alt.Axis(title=' Alpha Beta Gamma \u03b1 \u03b2 '+ unicode_gamma)),
    y='petalWidth',
    color='species'
)

产生:
使用Altair和Jupyter进行绘图时,如何在Axis标签中显示希腊字母?

上一篇:altair edem2021仿真模拟软件


下一篇:我如何计算标签/工具提示的汇总?