提问人:Peter 提问时间:7/5/2023 更新时间:7/5/2023 访问量:14
如何在词云中使用下标?
How to use subscript in wordclouds?
问:
知道如何在词云中使用下标吗?感谢您的建议。 这是我到目前为止尝试过的:
import numpy as np
import matplotlib.pyplot as plt
from wordcloud import WordCloud
text = '$X_{i}$'
x, y = np.ogrid[:300, :300]
mask = (x - 150) ** 2 + (y - 150) ** 2 > 130 ** 2
mask = 255 * mask.astype(int)
wc = WordCloud(background_color="white", repeat=True, mask=mask)
wc.generate(text)
plt.figure(figsize=(10, 10))
plt.axis("off")
plt.imshow(wc, interpolation="bilinear")
plt.show()
答: 暂无答案
评论