作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试绘制以 arabic
书写的最常用单词的直方图,但我想不出办法做到这一点。我所能得到的只是切片字符,而不是编译后的单词。
这是我得到的一个例子:
import seaborn as sns
import pandas as pd
res = {
'الذكاء': 8,
'الاصطناعي': 9,
'هو': 2,
'سلوك': 1,
'وخصائص': 1,
'معينة': 1,
'تتسم': 1
}
df = pd.DataFrame(res.items(), columns=['word', 'count'])
sns.set(style="whitegrid")
ax = sns.barplot(x="count", y="word", data=df)
最佳答案
这似乎与 arabic_reshaper
运行良好和 bidi
正如@Sheldore 所指出的。
import seaborn as sns
import pandas as pd
import arabic_reshaper
from bidi.algorithm import get_display
res = {
'الذكاء': 8,
'الاصطناعي': 9,
'هو': 2,
'سلوك': 1,
'وخصائص': 1,
'معينة': 1,
'تتسم': 1
}
res2 = {get_display(arabic_reshaper.reshape(k)): v for k,v in res.items()}
df = pd.DataFrame(res2.items(), columns=['word', 'count'])
sns.set(style="whitegrid")
ax = sns.barplot(x="count", y="word", data=df)
关于python - 用阿拉伯字符绘制直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56292850/
我在 mysql 数据库中有一个“价格”字段,其中包含以阿拉伯或波斯数字表示的产品价格。 数字示例:12345567890 //1234567890 我不知道如何格式化它以便以用户友好的方式格式化。我
由于单独使用 prawn gem 时阿拉伯字母显示为未知字符,因此我安装了 Arabic-Prawn gem 0.0.1 以阿拉伯语打印数据。我用下面的代码作为测试 Prawn::Document.g
我是一名优秀的程序员,十分优秀!