久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='Aq3OG'></tfoot>
<legend id='Aq3OG'><style id='Aq3OG'><dir id='Aq3OG'><q id='Aq3OG'></q></dir></style></legend>
  • <i id='Aq3OG'><tr id='Aq3OG'><dt id='Aq3OG'><q id='Aq3OG'><span id='Aq3OG'><b id='Aq3OG'><form id='Aq3OG'><ins id='Aq3OG'></ins><ul id='Aq3OG'></ul><sub id='Aq3OG'></sub></form><legend id='Aq3OG'></legend><bdo id='Aq3OG'><pre id='Aq3OG'><center id='Aq3OG'></center></pre></bdo></b><th id='Aq3OG'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Aq3OG'><tfoot id='Aq3OG'></tfoot><dl id='Aq3OG'><fieldset id='Aq3OG'></fieldset></dl></div>

    • <bdo id='Aq3OG'></bdo><ul id='Aq3OG'></ul>

    <small id='Aq3OG'></small><noframes id='Aq3OG'>

      1. Matplotlib 在刻度標簽(字符串)中顯示美元符號

        Matplotlib Display Dollar Signs in Tick Labels (Strings)(Matplotlib 在刻度標簽(字符串)中顯示美元符號)

      2. <legend id='psxRq'><style id='psxRq'><dir id='psxRq'><q id='psxRq'></q></dir></style></legend>

          <tbody id='psxRq'></tbody>

        <small id='psxRq'></small><noframes id='psxRq'>

        <tfoot id='psxRq'></tfoot>

            • <bdo id='psxRq'></bdo><ul id='psxRq'></ul>

              <i id='psxRq'><tr id='psxRq'><dt id='psxRq'><q id='psxRq'><span id='psxRq'><b id='psxRq'><form id='psxRq'><ins id='psxRq'></ins><ul id='psxRq'></ul><sub id='psxRq'></sub></form><legend id='psxRq'></legend><bdo id='psxRq'><pre id='psxRq'><center id='psxRq'></center></pre></bdo></b><th id='psxRq'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='psxRq'><tfoot id='psxRq'></tfoot><dl id='psxRq'><fieldset id='psxRq'></fieldset></dl></div>

                  本文介紹了Matplotlib 在刻度標簽(字符串)中顯示美元符號的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我不知道如何在不是數字而是字符串的刻度標簽中顯示美元符號.

                  這是我的意思的一個例子:

                  import matplotlib.pyplot as plt將 numpy 導入為 np類別 = ['$0-$10','$10-$20','$20-$30']y_pos = np.arange(len(categories))數據 = 3 + 10 * np.random.rand(len(categories))plt.barh(y_pos, 數據, align='center', alpha=0.4)plt.yticks(y_pos, 類別)plt.show()

                  產量:

                  我試過這個,它可以用數千美元:

                  fmt = '${x:,.0f}'滴答聲 = mtick.StrMethodFormatter(fmt)plt.yaxis.set_major_formatter(勾選)

                  ...但是像我這里的字符串沒有運氣.

                  解決方案

                  用反斜杠轉義美元符號,以便 Matplotlib 不會將它們解釋為表示

                  I can't figure out how to display dollar signs in tick labels that are not numbers, but strings.

                  Here's an example of what I mean:

                  import matplotlib.pyplot as plt
                  import numpy as np
                  
                  categories = ['$0-$10','$10-$20','$20-$30']
                  y_pos = np.arange(len(categories))
                  data = 3 + 10 * np.random.rand(len(categories))
                  
                  plt.barh(y_pos, data, align='center', alpha=0.4)
                  plt.yticks(y_pos, categories)
                  
                  plt.show()
                  

                  Yields:

                  I tried this, which works with thousands of dollars:

                  fmt = '${x:,.0f}'
                  tick = mtick.StrMethodFormatter(fmt)
                  plt.yaxis.set_major_formatter(tick) 
                  

                  ...but no luck with strings like I have here.

                  解決方案

                  Escape the dollar signs with a backslash so that Matplotlib does not interpret them as indicating the beginning (or ending) of LaTeX math mode:

                  import matplotlib.pyplot as plt
                  import numpy as np
                  
                  categories = ['$0-$10','$10-$20','$20-$30']
                  y_pos = np.arange(len(categories))
                  data = 3 + 10 * np.random.rand(len(categories))
                  
                  plt.barh(y_pos, data, align='center', alpha=0.4)
                  plt.yticks(y_pos, categories)
                  
                  plt.show()
                  

                  這篇關于Matplotlib 在刻度標簽(字符串)中顯示美元符號的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個在 Python 中提供角色的不和諧機器人?)
                  Discord bot isn#39;t responding to commands(Discord 機器人沒有響應命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關于我嗎?Discord 機器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動更改角色顏色)

                          <tbody id='13XtS'></tbody>
                        • <small id='13XtS'></small><noframes id='13XtS'>

                            <bdo id='13XtS'></bdo><ul id='13XtS'></ul>
                            <i id='13XtS'><tr id='13XtS'><dt id='13XtS'><q id='13XtS'><span id='13XtS'><b id='13XtS'><form id='13XtS'><ins id='13XtS'></ins><ul id='13XtS'></ul><sub id='13XtS'></sub></form><legend id='13XtS'></legend><bdo id='13XtS'><pre id='13XtS'><center id='13XtS'></center></pre></bdo></b><th id='13XtS'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='13XtS'><tfoot id='13XtS'></tfoot><dl id='13XtS'><fieldset id='13XtS'></fieldset></dl></div>
                            <tfoot id='13XtS'></tfoot>

                            <legend id='13XtS'><style id='13XtS'><dir id='13XtS'><q id='13XtS'></q></dir></style></legend>
                            主站蜘蛛池模板: 国产1区在线 | 国产午夜精品久久久久 | 天天干天天干 | 亚洲美女视频 | 国产精品免费视频一区 | 日韩影音| 久久这里有精品 | 91精品国产91久久久久久吃药 | 国产一区二区三区四区五区加勒比 | 日日操日日干 | 久久久久久国产精品免费免费狐狸 | 涩爱av一区二区三区 | 欧美成人精品一区二区男人看 | 精品欧美一区二区三区久久久小说 | 大象视频一区二区 | av毛片在线播放 | 97av | 超碰在线久 | 蜜臀久久| 国产在线精品一区二区三区 | 成人免费一区二区 | 亚洲男人网 | 99国内精品 | 亚洲综合日韩精品欧美综合区 | 亚洲 一区 | 国产精品视频一 | 欧美一区二区三区在线免费观看 | 在线日韩精品视频 | 黄色网一级片 | 成人毛片在线视频 | 中文字幕免费在线 | 亚洲伊人久久综合 | 亚洲一区影院 | 97成人精品 | 欧美精品一区二区三区在线 | 亚洲第一在线 | 久久国产精品久久国产精品 | 一级一级一级毛片 | 成人免费视频观看视频 | 亚洲精品一区在线 | 成人精品一区二区三区中文字幕 |