如何在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'
)