第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Matplotlib:嘗試刪除軸,但 plt.axis('off') 將所有圖形變?yōu)橥该?,為什么?/h1>

我嘗試使用 plt.axis('off') 刪除軸,但是當(dāng)我添加此代碼時,它會將所有圖形變?yōu)橥该?,代碼運(yùn)行沒有問題但軸沒有 plt.axis('off')。這是代碼import matplotlib as mplimport matplotlib.pyplot as pltimport numpy as npdef plot_net(line, dot, name = "test.png"):    mpl.rcParams['agg.path.chunksize'] = 10000    fig = plt.figure(figsize = (5, 5), frameon = False)    axiss = fig.add_axes([0, 0, 1, 1])    axiss.set_aspect('equal', adjustable = 'datalim')    plt.axis('off')    axiss.scatter(dot[:, 0], dot[:, 1], color = 'red', s = 4)    axiss.plot(line[:, 0], line[:, 1], 'r.', ls = '-', color = '#0063ba', markersize = 2)    plt.savefig(name, bbox_inches = 'tight', pad_inches = 0, dpi = 200)    plt.close()a = np.random.rand(4, 2)b = np.random.rand(4, 2)plot_net(a, b, name = "test2.png")沒有 plt.axis('off') 的結(jié)果 enter image description hereplt.axis('off') 的結(jié)果 enter image description here
查看完整描述

2 回答

?
陪伴而非守候

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超8個贊

嘗試將可見性設(shè)置為 false 而不是使用“off”:


import matplotlib as mpl

import matplotlib.pyplot as plt


import numpy as np


def plot_net(line, dot, name = "test.png"):

    mpl.rcParams['agg.path.chunksize'] = 10000


    fig = plt.figure(figsize = (5, 5), frameon = False)

    axiss = fig.add_axes([0, 0, 1, 1])


    axiss.set_aspect('equal', adjustable = 'datalim')


    axiss.get_yaxis().set_visible(False)

    axiss.get_xaxis().set_visible(False)


    axiss.scatter(dot[:, 0], dot[:, 1], color = 'red', s = 4)

    axiss.plot(line[:, 0], line[:, 1], 'r.', ls = '-', color = '#0063ba', markersize = 2)


    plt.savefig(name, bbox_inches = 'tight', pad_inches = 0, dpi = 200)

    plt.close()


a = np.random.rand(4, 2)

b = np.random.rand(4, 2)


plot_net(a, b, name = "c:/temp/test2.png")


查看完整回答
反對 回復(fù) 2023-01-04
?
慕虎7371278

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超4個贊

我剛剛在https://repl.it/repls/DentalRunnyBlockchain#test.png上試過你的代碼

它工作正常所以 axis off 做你想實(shí)現(xiàn)的


查看完整回答
反對 回復(fù) 2023-01-04
?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個贊

看起來它與您對“軸”的定義有關(guān)。如果你繞過它它會起作用:


import matplotlib as mpl

import matplotlib.pyplot as plt


import numpy as np


def plot_net(line, dot, name = "test.png"):

    mpl.rcParams['agg.path.chunksize'] = 10000


    fig = plt.figure(figsize = (5, 5), frameon = False)


    plt.axes().set_aspect('equal', adjustable = 'datalim')


    plt.scatter(dot[:, 0], dot[:, 1], color = 'red', s = 4)

    plt.plot(line[:, 0], line[:, 1], 'r.', ls = '-', color = '#0063ba', markersize = 2)


    plt.axis('off')


    plt.savefig(name, bbox_inches = 'tight', pad_inches = 0, dpi = 200)

    plt.close()


a = np.random.rand(4, 2)

b = np.random.rand(4, 2)


plot_net(a, b)


查看完整回答
反對 回復(fù) 2023-01-04
  • 2 回答
  • 0 關(guān)注
  • 280 瀏覽
慕課專欄
更多

添加回答

了解更多

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號