好多天前,分享了一下在电脑上运行自己十多年前写的代码,其核心就是使用Python+matplotlib绘图。matplotlib是一个非常强大的综合库,用于在 Python 中创建静态、动画和交互式可视化程序。  (图源 :[pixabay](https://pixabay.com/photos/lightbulb-idea-creativity-base-3104355/)) 最近又把matplotlib找出来使用,不曾想却遇到几个问题(忘记N年前是如何解决的啦),经过一番学习和探索,总算把这几个拦路虎摆平啦,记录下来以免遗忘,也希望能帮到后来者。 # 安装 使用之前,我们首先需要在Python虚拟运行环境中安装Matplotlib,指令如下: >`pip install matplotlib` # 解决`plt.show()`失败问题 安装成功后,如果我们直接去尝试官网中的例子,代码如下: ``` import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2 * np.pi, 200) y = np.sin(x) fig, ax = plt.subplots() ax.plot(x, y) plt.show() ``` 那么接下来我们可能会受到一些打击。 比如说,我就遇到了如下错误: >UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown plt.show() 这个问题简单来讲就是需要安装GUI支持,以便Matplotlib能够显示图像,具体内容请参考[文末链接](https://stackoverflow.com/questions/56656777/userwarning-matplotlib-is-currently-using-agg-which-is-a-non-gui-backend-so)。 我这使用如下方案可以完美解决: >`pip install pyqt5` 接下来我们再次用官网示例中的例子测试一下我们的安装是否有问题。 运行示例,我们将会得到如下图形:  是不是很神奇呀? # 解决中文显示的问题(临时方案) 下面我们来运行如下代码: ``` import matplotlib.pyplot as plt x = [1,2,3] y = [5,-7,8] plt.plot(x, y) plt.xlabel('x - 轴') plt.ylabel('y - 轴') plt.title('简单图形') plt.show() ``` 代码很简单,不做过多解释了。 但是运行代码我们得到的图形却是这个样子的:  有没有觉得哪里不正常?没错,我们添加的中文信息,都显示成乱码啦!并且命令行中也会出现类似如下的错误提示: >UserWarning: Glyph 21333 (\N{CJK UNIFIED IDEOGRAPH-5355}) missing from current font. plt.show() 临时解决方法: >`plt.rcParams['font.sans-serif']=['Microsoft YaHei']` 其中'Microsoft YaHei'是我系统中的中文字体之一。 (可以在C:\Users\xxxx\.matplotlib\fontlist-v330.json中查看名称和定位等) 我们还可以添加这句代码来显示正常的负号: >`plt.rcParams['axes.unicode_minus'] = False ` 添加了如上两行代码后重新运行示例:  对比之前的图形,我们会发现:中文字符显示正确了,负号也变得更好看了,成功! # 解决中文显示的问题(永久方案) 通过增加如下两行代码的方式,我们成功地解决了中文字符以及负号(`-`)的正确显示问题: >`plt.rcParams['font.sans-serif']=['Microsoft YaHei']` >`plt.rcParams['axes.unicode_minus'] = False` 但是这个方案有个缺点,我们每写一段新代码,都不得不在代码中加入上述语句,否则中文字符就会再次以乱码形式出现,负号也变成了难看的样子。 那么有没有什么一劳永逸的方法呢?答案是有的,那就是修改matplotlib的配置文件,以我的电脑为例,路径如下: >`E:\Study\.venv\Lib\site-packages\matplotlib\mpl-data` #### 中文字符 打开其中的`matplotlibrc`文件,找到这行: `#font.sans-serif: DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif` 去掉前边的`#`,并在其中加入`Microsoft YaHei,` 修改完成后是这个样子: >`font.sans-serif: Microsoft YaHei, DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif` #### 负号问题 找到以下这行: >`#axes.unicode_minus: True # use Unicode for the minus symbol rather than hyphen. See` 去掉`#`并把值从True改为False,修改完成后是这个样子: >`axes.unicode_minus: False # use Unicode for the minus symbol rather than hyphen. See` 再来测试如下代码(没额外增加设置语句): ``` import matplotlib.pyplot as plt x = [1,2,3] y = [5,-7,8] plt.plot(x, y) plt.xlabel('x - 轴') plt.ylabel('y - 轴') plt.title('简单图形') plt.show() ``` 输出图形如下:  总算解决Matplotlib绘图中遇到的问题啦,以后可以愉快地玩耍啦。 # 相关链接 * https://matplotlib.org/stable/users/getting_started/ * ["UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure." when plotting figure with pyplot on Pycharm](https://stackoverflow.com/questions/56656777/userwarning-matplotlib-is-currently-using-agg-which-is-a-non-gui-backend-so)
author | oflyhigh |
---|---|
permlink | matplotlib |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","python","matplotlib","study","cn-progamming"],"image":["https://images.hive.blog/DQmPQVkwTyjuqZgb9w6QZ7MiGRFwLS73NiNcZZiujsfsSDj/image.png","https://images.hive.blog/DQmedj8PFGX8UfnDMn5QVYAW3qfXCnVrwdEVvRZzM6DTJSA/image.png","https://images.hive.blog/DQmXFfiYRjrEYD1vTKFqhykVUacyWLHkYVVyoKzVfNLt1u7/image.png","https://images.hive.blog/DQmQohqqwJVC2G6gDSywZoGWtX5x7JAzyBBGSSqmCsGn2W7/image.png","https://images.hive.blog/DQmbDziBzXbUjmDTzBuLiC74eHfwCm8T7pXCJi8NNmFVYG9/Figure_1.png"],"links":["https://pixabay.com/photos/lightbulb-idea-creativity-base-3104355/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2023-11-04 09:54:51 |
last_update | 2023-11-04 09:54:51 |
depth | 0 |
children | 5 |
last_payout | 2023-11-11 09:54:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 39.556 HBD |
curator_payout_value | 39.509 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,698 |
author_reputation | 6,267,635,002,292,573 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,568,613 |
net_rshares | 160,112,233,014,217 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 28,241,169,576,332 | 100% | ||
adm | 0 | 28,434,492,291,878 | 100% | ||
steemychicken1 | 0 | 429,429,644,605 | 14.3% | ||
boatymcboatface | 0 | 154,846,245,047 | 8% | ||
kingscrown | 0 | 21,195,542,880 | 8% | ||
theshell | 0 | 41,440,497,655 | 8% | ||
gerber | 0 | 58,569,682,687 | 20% | ||
daan | 0 | 58,726,964,703 | 8% | ||
ezzy | 0 | 3,254,958,550 | 20% | ||
renovatio | 0 | 2,590,702,378 | 100% | ||
deanliu | 0 | 3,644,693,826,985 | 100% | ||
exyle | 0 | 186,454,034,961 | 20% | ||
joythewanderer | 0 | 8,842,084,339 | 100% | ||
ace108 | 0 | 1,291,082,164,759 | 26% | ||
logic | 0 | 156,820,387,339 | 100% | ||
magicmonk | 0 | 4,353,553,320,617 | 100% | ||
laoyao | 0 | 65,288,516,741 | 100% | ||
midnightoil | 0 | 230,410,839,341 | 100% | ||
xiaohui | 0 | 20,390,036,775 | 100% | ||
jphamer1 | 0 | 5,329,074,742,054 | 100% | ||
bert0 | 0 | 16,651,350,827 | 20% | ||
rivalhw | 0 | 2,551,008,340,424 | 100% | ||
helene | 0 | 1,463,693,430,358 | 100% | ||
ffcrossculture | 0 | 175,695,417,892 | 100% | ||
netaterra | 0 | 248,911,422,493 | 15% | ||
someguy123 | 0 | 362,963,495,971 | 20% | ||
daveks | 0 | 4,258,486,547,691 | 55% | ||
penguinpablo | 0 | 209,104,878,973 | 14% | ||
cnfund | 0 | 105,649,246,456 | 50% | ||
funnyman | 0 | 1,479,674,105 | 5.6% | ||
justyy | 0 | 595,211,298,344 | 100% | ||
btshuang | 0 | 746,785,498 | 50% | ||
redes | 0 | 3,741,516,384,707 | 46% | ||
azazqwe | 0 | 81,976,334,394 | 100% | ||
bxt | 0 | 290,138,658,080 | 100% | ||
privex | 0 | 25,338,803,551 | 40% | ||
trafalgar | 0 | 31,305,182,819,193 | 66% | ||
lordneroo | 0 | 2,183,463,479 | 100% | ||
lizanomadsoul | 0 | 4,640,944,482 | 2% | ||
raindrop | 0 | 484,584,192,681 | 66% | ||
passion-fruit | 0 | 12,095,825,114 | 92% | ||
fortune-master | 0 | 11,767,984,558 | 92% | ||
mobbs | 0 | 275,024,836,274 | 100% | ||
drag33 | 0 | 34,167,610,039 | 100% | ||
nanosesame | 0 | 493,431,906,381 | 80% | ||
exec | 0 | 353,819,160,375 | 100% | ||
alphacore | 0 | 2,046,748,294 | 2.15% | ||
joeyarnoldvn | 0 | 578,630,222 | 1.76% | ||
geekgirl | 0 | 2,797,697,354,218 | 100% | ||
susanli3769 | 0 | 897,513,612,339 | 100% | ||
travelgirl | 0 | 191,555,276,303 | 100% | ||
mygod | 0 | 743,197,974 | 50% | ||
shitsignals | 0 | 658,601,200 | 20% | ||
catwomanteresa | 0 | 491,081,750,789 | 100% | ||
dine77 | 0 | 25,194,294,731 | 70% | ||
pocketrocket | 0 | 19,964,137,847 | 100% | ||
jeanlucsr | 0 | 1,154,184,190 | 2% | ||
ahlawat | 0 | 13,004,911,220 | 25.1% | ||
idx | 0 | 27,099,364,528 | 100% | ||
aafeng | 0 | 881,869,334,121 | 100% | ||
cn-reader | 0 | 18,607,709,221 | 50% | ||
tvb | 0 | 4,314,528,305 | 30% | ||
felander | 0 | 102,765,425,030 | 20% | ||
santigs | 0 | 209,143,550,904 | 50% | ||
floatinglin | 0 | 7,885,993,274 | 100% | ||
mrspointm | 0 | 642,820,150,755 | 100% | ||
liumei | 0 | 4,853,969,676 | 100% | ||
stoodkev | 0 | 16,465,477,013,671 | 100% | ||
tipu | 0 | 1,940,131,413,637 | 10% | ||
kimzwarch | 0 | 17,147,000,548 | 4% | ||
artonmysleeve | 0 | 5,167,181,460 | 27.5% | ||
cconn | 0 | 2,442,504,229 | 20% | ||
yogacoach | 0 | 4,600,203,729 | 20% | ||
joshman | 0 | 222,647,374,495 | 25% | ||
chenlocus | 0 | 89,382,425,807 | 100% | ||
tomwafula | 0 | 629,615,391 | 20% | ||
deathwing | 0 | 606,405,961,087 | 20% | ||
silversaver888 | 0 | 39,485,919,235 | 10% | ||
minloulou | 0 | 5,717,845,061 | 70% | ||
victory622 | 0 | 175,096,465,777 | 100% | ||
gtpjfoodbank | 0 | 21,192,813,716 | 90% | ||
japanguide | 0 | 1,586,209,723 | 100% | ||
jychbetter | 0 | 732,086,774,964 | 100% | ||
winniex | 0 | 435,407,782,812 | 100% | ||
emrebeyler | 0 | 110,383,876,135 | 18% | ||
etherpunk | 0 | 890,277,301 | 50% | ||
traf | 0 | 2,630,287,585,681 | 66% | ||
ioioioioi | 0 | 2,227,743,014 | 100% | ||
wiseagent | 0 | 5,495,296,785 | 15% | ||
cryptonized | 0 | 236,869,288 | 14% | ||
soufianechakrouf | 0 | 4,880,642,625 | 100% | ||
tryskele | 0 | 1,329,180,384 | 5% | ||
belemo | 0 | 40,110,385,845 | 100% | ||
mermaidvampire | 0 | 2,082,066,741 | 100% | ||
manncpt | 0 | 3,263,508,797 | 2% | ||
seikatsumkt | 0 | 5,331,123,784 | 75% | ||
ikrahch | 0 | 342,943,990,306 | 100% | ||
jnmarteau | 0 | 763,151,664 | 2% | ||
emmali | 0 | 216,894,351,178 | 100% | ||
unconditionalove | 0 | 2,660,216,129 | 10% | ||
rubelynmacion | 0 | 31,713,416,182 | 100% | ||
darkpylon | 0 | 801,807,448 | 20% | ||
rachelssi | 0 | 17,467,460,810 | 100% | ||
arac | 0 | 3,583,330,076 | 100% | ||
bestboom | 0 | 2,840,673,607 | 20% | ||
louis88 | 0 | 410,114,776,892 | 20% | ||
aellly | 0 | 304,413,599,726 | 100% | ||
themightyvolcano | 0 | 10,435,304,791 | 20% | ||
tresor | 0 | 56,747,097,642 | 20% | ||
cedricguillas | 0 | 241,571,442,079 | 100% | ||
el-dee-are-es | 0 | 5,885,429,909 | 10% | ||
bubtforhad | 0 | 2,045,552,033 | 50% | ||
leomolina | 0 | 2,163,062,622 | 9% | ||
pladozero | 0 | 33,981,506,541 | 10% | ||
nateaguila | 0 | 133,662,800,511 | 8% | ||
crypticat | 0 | 2,725,411,894 | 0.8% | ||
hmayak | 0 | 32,870,716,459 | 100% | ||
archisteem | 0 | 1,272,741,314 | 7.5% | ||
theluvbug | 0 | 1,753,647,376 | 25% | ||
dses | 0 | 54,122,250,509 | 80% | ||
digital.mine | 0 | 53,415,115,112 | 60% | ||
longer | 0 | 828,310,275 | 2.5% | ||
steemulant | 0 | 133,798,015 | 8.02% | ||
smartvote | 0 | 98,345,283,189 | 4.09% | ||
julian2013 | 0 | 74,718,769,261 | 100% | ||
dlike | 0 | 61,843,275,842 | 20% | ||
voxmortis | 0 | 37,571,809,155 | 20% | ||
bobby.madagascar | 0 | 5,600,277,149 | 10% | ||
pet.society | 0 | 14,534,080,597 | 6% | ||
pocketjs | 0 | 121,816,189 | 8.02% | ||
minminlou | 0 | 568,714,554 | 56% | ||
annepink | 0 | 832,785,746,127 | 100% | ||
merlin7 | 0 | 14,415,978,557 | 7.2% | ||
memeteca | 0 | 131,632,175 | 20% | ||
aikido.hung | 0 | 480,144,487 | 50% | ||
francescomai | 0 | 156,938,186,138 | 100% | ||
muntaharaceh | 0 | 3,613,526,527 | 80% | ||
jacuzzi | 0 | 3,536,941,589 | 1.4% | ||
lestrange | 0 | 6,968,050,116 | 90% | ||
determine | 0 | 1,217,395,139 | 20% | ||
permaculturedude | 0 | 5,163,937,354 | 20% | ||
jhellenmjgr | 0 | 184,951,747 | 100% | ||
fusion.lover | 0 | 34,827,103,595 | 100% | ||
steemtelly | 0 | 2,508,950,971 | 8.02% | ||
mia-cc | 0 | 1,241,219,331 | 10% | ||
hungrybear | 0 | 613,396,534 | 14% | ||
haikusailor | 0 | 1,334,210,574 | 20% | ||
lovelemon | 0 | 84,054,680,884 | 25% | ||
photographercr | 0 | 32,825,731,627 | 13.2% | ||
dailyke20 | 0 | 2,698,367,369 | 100% | ||
ying82 | 0 | 128,012,826,833 | 100% | ||
jimhawkins | 0 | 527,067,589 | 64% | ||
kgswallet | 0 | 512,048,483 | 10% | ||
triplea.bot | 0 | 4,328,383,642 | 20% | ||
steem.leo | 0 | 25,385,020,450 | 20% | ||
freedomring | 0 | 4,803,200,604 | 100% | ||
atyh | 0 | 264,214,517,995 | 100% | ||
janaveda | 0 | 12,493,063,620 | 100% | ||
electronico | 0 | 13,743,750,578 | 50% | ||
bilpcoinbot | 0 | 2,252,654,503 | 50% | ||
moleah | 0 | 666,034,382 | 100% | ||
dpoll.witness | 0 | 2,675,695,052 | 18% | ||
gigel2 | 0 | 1,004,014,040,327 | 100% | ||
bcm | 0 | 853,658,327 | 7.5% | ||
vickyli | 0 | 19,483,358,140 | 100% | ||
therealyme | 0 | 582,749,891 | 2.25% | ||
bilpcoin.pay | 0 | 540,050,566 | 10% | ||
dbfoodbank | 0 | 3,982,626,884 | 76% | ||
lnakuma | 0 | 25,820,003,030 | 100% | ||
weddinggift | 0 | 6,549,849,335 | 100% | ||
invest2learn | 0 | 492,556,679 | 20% | ||
stoodmonsters | 0 | 42,443,045,732 | 100% | ||
ribary | 0 | 7,406,691,271 | 10% | ||
warmstill | 0 | 830,073,181 | 50% | ||
bilpcoinbpc | 0 | 811,722,160 | 5% | ||
mice-k | 0 | 1,836,609,192 | 20% | ||
julesquirin | 0 | 639,858,429 | 2% | ||
dpend.active | 0 | 1,508,055,273 | 4% | ||
lovequeen | 0 | 376,428,011,422 | 100% | ||
hivebuzz | 0 | 9,101,411,553 | 2% | ||
hivewatchers | 0 | 959,235,671 | 55% | ||
bnk | 0 | 6,646,006,043 | 20% | ||
softworld | 0 | 193,602,613,269 | 50% | ||
dcityrewards | 0 | 712,081,222,624 | 20% | ||
sketching | 0 | 1,252,887,057 | 10% | ||
balvinder294 | 0 | 30,233,145,559 | 20% | ||
jywahaha | 0 | 1,676,702,477 | 100% | ||
patronpass | 0 | 1,355,975,677 | 20% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
jelly13 | 0 | 889,171,214 | 10% | ||
olaunlimited | 0 | 24,551,975,371 | 29.7% | ||
sunitahive | 0 | 20,264,485,592 | 100% | ||
evahe | 0 | 324,128,433,902 | 100% | ||
adedayoolumide | 0 | 10,815,176,956 | 50% | ||
rickardoh | 0 | 2,680,346,333 | 100% | ||
blogstats | 0 | 585,552,346 | 100% | ||
yubaibai6 | 0 | 31,562,401,245 | 100% | ||
philipmak | 0 | 1,417,062,244 | 50% | ||
hive-144994 | 0 | 479,560,297 | 100% | ||
kattycrochet | 0 | 51,746,314,829 | 33% | ||
bulkathos | 0 | 9,436,539,932 | 100% | ||
netaterra.leo | 0 | 851,087,899 | 13.5% | ||
cocaaladioxine | 0 | 4,557,871,311 | 95% | ||
hivechat | 0 | 1,042,499,398 | 10% | ||
dcrops | 0 | 128,820,120,198 | 10% | ||
hykss.leo | 0 | 40,201,734,258 | 4% | ||
belemo.leo | 0 | 483,091,064 | 100% | ||
yozen | 0 | 693,648,551 | 5% | ||
ausbit.dev | 0 | 4,274,872,452 | 20% | ||
valchain | 0 | 1,677,876,024 | 100% | ||
drricksanchez | 0 | 39,149,800,780 | 7.5% | ||
ericaliu | 0 | 29,292,973,413 | 100% | ||
hive.friends | 0 | 0 | 1% | ||
tingjie | 0 | 110,404,544,156 | 100% | ||
abundancelife | 0 | 180,107,644,721 | 100% | ||
jaybone | 0 | 2,749,657,174 | 100% | ||
lovelingling | 0 | 178,758,014,371 | 100% | ||
proymet | 0 | 3,706,699,636 | 100% | ||
mao317 | 0 | 2,309,916,965 | 100% | ||
janetfund | 0 | 26,864,152,066 | 100% | ||
everlandd | 0 | 26,211,412,853 | 100% | ||
zhangyan-123 | 0 | 238,356,552,360 | 100% | ||
harryhandsome | 0 | 2,658,448,531 | 100% | ||
alpha-omega | 0 | 32,781,621,919 | 49% | ||
tanzil2024 | 0 | 106,672,361,738 | 100% | ||
bai123 | 0 | 3,847,489,521 | 100% | ||
aequi | 0 | 43,245,083,376 | 100% | ||
lazy001 | 0 | 3,421,153,892 | 100% | ||
mimi.ruby | 0 | 190,891,983,445 | 100% | ||
lauti | 0 | 3,024,376,546 | 100% | ||
violator101 | 0 | 20,788,329,029 | 100% | ||
drexlord | 0 | 3,775,149,966 | 7.5% | ||
privatblog | 0 | 832,158,633,504 | 100% | ||
hoffmeister84 | 0 | 13,596,305,524 | 100% | ||
yelimarin | 0 | 30,574,340,580 | 100% | ||
abelfotografia | 0 | 59,144,335,620 | 75% | ||
pero82 | 0 | 3,517,775,880 | 40% | ||
rotanner | 0 | 217,037,188,661 | 50% | ||
cryptozenkart | 0 | 177,719,295,968 | 50% | ||
xianlaiyiju | 0 | 23,222,192,749 | 100% | ||
love5200 | 0 | 40,227,234,029 | 100% | ||
xiaoyaodidi | 0 | 72,929,978,028 | 100% | ||
franzpaulie | 0 | 37,698,710,591 | 100% | ||
poplar-22 | 0 | 605,605,525 | 0.66% | ||
kathyto | 0 | 78,506,815,325 | 100% | ||
bgmoha | 0 | 3,860,682,751 | 55% | ||
queercoin | 0 | 84,530,848,048 | 100% | ||
jayrent | 0 | 2,408,770,574 | 100% | ||
nurul-uli | 0 | 2,422,250,978 | 100% | ||
chidistickz | 0 | 4,746,079,524 | 50% | ||
biaojie | 0 | 38,967,312,658 | 100% | ||
selftheist | 0 | 1,127,121,776 | 50% | ||
foodchunk | 0 | 320,157,878,244 | 100% | ||
sarofar87 | 0 | 23,649,210,726 | 100% | ||
daisy1999 | 0 | 14,121,980,701 | 100% | ||
syawalularsya | 0 | 2,575,862,323 | 100% |
每天进步!O哥进步小能手!只能仰望O神啊! @tipu curate
author | annepink |
---|---|
permlink | parama-1699103837725 |
category | hive-105017 |
json_metadata | "" |
created | 2023-11-04 13:17:21 |
last_update | 2023-11-04 13:17:21 |
depth | 1 |
children | 1 |
last_payout | 2023-11-11 13:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,027,406,686,392,248 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,571,936 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?annepink" target="_blank">Upvoted 👌</a> (Mana: 8/48) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-parama-1699103837725-20231104t131726z |
category | hive-105017 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-11-04 13:17:27 |
last_update | 2023-11-04 13:17:27 |
depth | 2 |
children | 0 |
last_payout | 2023-11-11 13:17:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 55,905,961,568,182 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,571,938 |
net_rshares | 0 |
我要能有O哥一半的学习态度,早就上清北了。。。😂佩服佩服。
author | love5200 |
---|---|
permlink | re-oflyhigh-2023114t214010651z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","python","matplotlib","study","cn-progamming"],"app":"ecency/3.0.36-vision","format":"markdown+html"} |
created | 2023-11-04 13:40:18 |
last_update | 2023-11-04 13:40:18 |
depth | 1 |
children | 0 |
last_payout | 2023-11-11 13:40:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 536,562,363,254,952 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,572,279 |
net_rshares | 0 |
解决问题就像做一道数学题一样,其中的喜悦也只有当事人才能感受到。待在舒适区久了,很长时间没这感觉了。😂
author | lovelingling |
---|---|
permlink | parama-1699094653227 |
category | hive-105017 |
json_metadata | "" |
created | 2023-11-04 10:44:15 |
last_update | 2023-11-04 10:44:15 |
depth | 1 |
children | 0 |
last_payout | 2023-11-11 10:44:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 716,623,616,587,841 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,569,313 |
net_rshares | 0 |
看O哥的代码贴 就是我的精神食粮 边吃饭边看 不亦乐乎😄
author | xiaoyaodidi |
---|---|
permlink | re-oflyhigh-2023114t12342043z |
category | hive-105017 |
json_metadata | {"type":"comment","tags":["hive-105017","cn","life","blog","python","matplotlib","study","cn-progamming"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-11-04 11:34:21 |
last_update | 2023-11-04 11:34:21 |
depth | 1 |
children | 0 |
last_payout | 2023-11-11 11:34:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 420,068,217,197,428 |
root_title | 每天进步一点点:解决Matplotlib绘图中的几个问题 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,569,951 |
net_rshares | 0 |