绘图中的阿拉伯字母显示不正确

时间:2019-01-06 18:33:23

标签: python pandas arabic letter

我使用了所有正确的编码,并且该软件可以正常工作,但阿拉伯字母未连接(大多数阿拉伯字母彼此相邻时已连接)

这是情节显示图像的方式

我通过条形图功能使用了python Pandas模块

1 个答案:

答案 0 :(得分:0)

解决此问题的唯一方法是将需要绘制的熊猫字列中的所有阿拉伯词用Data Type进行绘制和整形,然后将它们附加到列表中,并将此列表作为我的x轴:

Entity

当然,您需要先安装arabic_reshaper# reshaping the arabic words to show correctly on matplotlib import arabic_reshaper import matplotlib.pyplot as plt from bidi.algorithm import get_display x = [ ] for item in df.column_name.values: x.append(get_display(arabic_reshaper.reshape(item))) 软件包