设置 Altair FormatLocale 无效
Setting Altair FormatLocale isn't working
import altair as alt
import pandas as pd
from urllib import request
import json
# fetch & enable a Brazil format & timeFormat locales.
with request.urlopen('https://raw.githubusercontent.com/d3/d3-format/master/locale/pt-BR.json') as f:
pt_format = json.load(f)
with request.urlopen('https://raw.githubusercontent.com/d3/d3-time-format/master/locale/pt-BR.json') as f:
pt_time_format = json.load(f)
alt.renderers.set_embed_options(formatLocale=pt_format, timeFormatLocale=pt_time_format)
df = pd.DataFrame({
'date': pd.date_range('2020-01-01', freq='M', periods=6),
'revenue': [100000, 110000, 90000, 120000, 85000, 115000]
})
a = alt.Chart(df).mark_bar().encode(
y='month(date):O',
x=alt.X('revenue:Q', axis=alt.Axis(format='$,.0f'))
)
a.save('tst.html')
当我 运行 代码时,我希望使用“R$”作为前缀来格式化收入。但仍然得到“$”。我检查了 pt_format,我可以看到如下所示的货币“R$”。
{'decimal': ',', 'thousands': '.', 'grouping': [3], 'currency': ['R$', '']}
似乎 alt.renderers.set_embed_options 不工作。我没有线索。任何帮助将不胜感激
alt.renderers
设置仅适用于渲染器显示的图表,例如在 Jupyter Notebook 中:它不影响通过 chart.save()
.
保存到 HTML 的图表
在这种情况下,您可以将嵌入选项直接传递给 save()
命令:
chart.save('chart.html', embed_options=dict(formatLocale=pt_format, timeFormatLocale=pt_time_format))
import altair as alt
import pandas as pd
from urllib import request
import json
# fetch & enable a Brazil format & timeFormat locales.
with request.urlopen('https://raw.githubusercontent.com/d3/d3-format/master/locale/pt-BR.json') as f:
pt_format = json.load(f)
with request.urlopen('https://raw.githubusercontent.com/d3/d3-time-format/master/locale/pt-BR.json') as f:
pt_time_format = json.load(f)
alt.renderers.set_embed_options(formatLocale=pt_format, timeFormatLocale=pt_time_format)
df = pd.DataFrame({
'date': pd.date_range('2020-01-01', freq='M', periods=6),
'revenue': [100000, 110000, 90000, 120000, 85000, 115000]
})
a = alt.Chart(df).mark_bar().encode(
y='month(date):O',
x=alt.X('revenue:Q', axis=alt.Axis(format='$,.0f'))
)
a.save('tst.html')
当我 运行 代码时,我希望使用“R$”作为前缀来格式化收入。但仍然得到“$”。我检查了 pt_format,我可以看到如下所示的货币“R$”。 {'decimal': ',', 'thousands': '.', 'grouping': [3], 'currency': ['R$', '']} 似乎 alt.renderers.set_embed_options 不工作。我没有线索。任何帮助将不胜感激
alt.renderers
设置仅适用于渲染器显示的图表,例如在 Jupyter Notebook 中:它不影响通过 chart.save()
.
在这种情况下,您可以将嵌入选项直接传递给 save()
命令:
chart.save('chart.html', embed_options=dict(formatLocale=pt_format, timeFormatLocale=pt_time_format))