Author: 儲蓄保險王
Python如何用pandas.DataFrame.describe() 一次求得計數(count), 均值(mean), 標準差(std), max, min, 中位數, 1/4位數, 3/4位數
DataFrame df: df.describe() 一次求得均值...
Python 邏輯運算子: and(&) or(|) xor(^) not ; assert 預期為真的條件式, “錯誤訊息” ; 條件式為真的話,繼續往下跑,否則AssertionError: “錯誤訊息”
and (&): 必須兩者皆為True,才會返回True 只...
Taxas Instruments TI AWR1443BOOST EVM: mmWave Demo Visualizer 按”SEND CONFIG TO MMWAVE DEVICE” 若沒反應怎麼處理?
AWR1443, AWR1243 Evaluation Module...
Python: matplotlib繪製出的圖表如何插入背景圖? img = plt.imread(‘background_image.png’) ; ax.imshow(img, extent=[0, 10, -1.2, 1.2], aspect=’auto’, alpha=0.5)
import matplotlib.pyplot as plt im...
Python: matplotlib如何繪製出副刻度?minor_locator = ticker.MultipleLocator(0.5) ; ax.xaxis.set_minor_locator(minor_locator)
import matplotlib.pyplot as plt im...
Python: 如何用scipy.interpolate做內插? from scipy.interpolate import interp1d ; f = interp1d(x, y) ; 如何用numpy.polyfit() 做外插?
from scipy.interpolate import inte...

近期留言