雑多な技術系メモ

自分用のメモ。内容は保証しません。よろしくお願いします。

en

Colaboratory officially suport vim mode !

en

We can use vim on Colaboratory ! Vim support is now available through the updated editor. Opt in now to try it out! :𝚠𝚚 pic.twitter.com/86iF2pJPP0— Colaboratory (@GoogleColab) August 1, 2019 How to use vim on Colaboratory Click upper right…

How to display normal distribution in Tex

en

$\mathcal{N}$ \mathcal{N}

【matplotlib, scipy】How to plot normal distribution by python

The code to plot above graph. import numpy as np import matplotlib.pyplot as plt import scipy.stats mean = 50 std = 10 x = np.linspace(0,100,100) y = scipy.stats.norm.pdf(x,mean,std) plt.plot(x,y) plt.show()

【matplotlib】Remove all graphs

The code how to remove all graphs plotted import matplotlib.pyplot as plt ...... plt.gca().clear()