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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Jupyter 單元格中并排顯示兩個(gè)圖形

如何在 Jupyter 單元格中并排顯示兩個(gè)圖形

白板的微信 2023-10-06 16:23:55
import pandas as pdimport seaborn as sns# load datadf = sns.load_dataset('penguins', cache=False)sns.scatterplot(data=df, x='bill_length_mm', y='bill_depth_mm', hue='sex')plt.show()sns.scatterplot(data=df, x='flipper_length_mm', y='body_mass_g', hue='sex')plt.show()當(dāng)我在 jupyter 的一個(gè)單元格中使用 seaborn 繪制兩個(gè)圖時(shí),我得到以下視圖:我想并排繪制這些圖,如下所示:繪圖 1 繪圖 2我應(yīng)該怎么做?更新:不是一張圖上的兩個(gè)圖,而是兩個(gè)單獨(dú)圖上的兩個(gè)圖。這不是正在尋求的解決方案,因?yàn)樗且粡垐D上的兩個(gè)圖。fig, ax = plt.subplots(1,2) sns.plotType(someData, ax=ax[0])  # plot1 sns.plotType(someData, ax=ax[1])  # plot2 fig.show()建議的重復(fù)ipython 筆記本中的解決方案水平排列繪圖,不起作用選項(xiàng) 導(dǎo)致%html圖形彼此重疊繪制此外,其他選項(xiàng)適用于ipython,而不是 Jupyter,或建議創(chuàng)建子圖。
查看完整描述

1 回答

?
明月笑刀無(wú)情

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

這可能是最簡(jiǎn)單的解決方案。其他解決方案可能涉及入侵 Jupyter 的后端環(huán)境。

本題涉及并排顯示兩個(gè)圖形。

從代碼單元中并排執(zhí)行的兩個(gè)單獨(dú)的圖形不起作用。

您將需要?jiǎng)?chuàng)建單獨(dú)的圖形,并用于plt.savefig('file.jpg')將每個(gè)圖形保存到文件中。

import pandas as pd

import seaborn as sns

import matplotlib.pyplot as plt


# load data

df = sns.load_dataset('penguins', cache=False)


# create and save figure

sns.scatterplot(data=df, x='bill_length_mm', y='bill_depth_mm', hue='sex')

plt.savefig('bill.jpg')

plt.close()  # prevents figure from being displayed when code cell is executed


# create and save new figure

sns.scatterplot(data=df, x='flipper_length_mm', y='body_mass_g', hue='sex')

plt.savefig('flipper.jpg')

plt.close()  # prevents figure from being displayed when code cell is executed

將圖形保存到文件后,可以通過(guò)將它們加載到 Markdown 單元格中并排顯示它們。

如果圖像太大,第二個(gè)數(shù)字將換行。

https://img1.sycdn.imooc.com//651fc46a0001a12a04250099.jpg

  • 然后執(zhí)行單元格


https://img1.sycdn.imooc.com//651fc47b0001ce1006500195.jpg

查看完整回答
反對(duì) 回復(fù) 2023-10-06
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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