其他分享
首页 > 其他分享> > 使用Altair和Jupyter进行绘图时,如何在Axis标签中显示希腊字母?

使用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'
)

产生:
plot with x-axis having Greek characters

标签:jupyter,latex,altair,python
来源: https://codeday.me/bug/20191110/2014916.html