We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great if latex worked in figure labels.
Expected behaviour is that the following would produce CO2 with the 2 in subscript (reprex follows):
from pandas_datareader import wb from letsplot import * LetsPlot.setup_html() df = wb.download( indicator="EN.ATM.CO2E.PC", country=["US", "CHN", "IND", "Z4", "Z7"], start=2017, end=2017, ) df = df.reset_index() df = df.sort_values("EN.ATM.CO2E.PC") ( ggplot(df, aes(x="country", y="EN.ATM.CO2E.PC")) + geom_bar(aes(fill="country"), alpha=.8, stat="identity") + scale_fill_discrete() + theme_minimal() + theme(legend_position="none") + labs( subtitle=r"CO$_2$ (metric tons per capita)", title="The USA leads the world on per-capita emissions" ) )
The text was updated successfully, but these errors were encountered:
Resolve #861.
da4cc96
37db20b
ASmirnov-HORIS
No branches or pull requests
It would be great if latex worked in figure labels.
Expected behaviour is that the following would produce CO2 with the 2 in subscript (reprex follows):
The text was updated successfully, but these errors were encountered: