208 KiB
208 KiB
In [2]:
import pandas as pd import numpy as np
In [64]:
data = np.load('./np_data/20200212.npy')
In [65]:
import matplotlib.pyplot as plt
In [66]:
data.shape
Out[66]:
(110, 190, 11)
In [68]:
plt.figure(figsize=(8, 8)) plt.imshow(data[0:64,0:64,0])
Out[68]:
<matplotlib.image.AxesImage at 0x7f097f5dee50>
In [10]:
plt.figure(figsize=(3, 2)) plt.imshow(data[:,:,2])
Out[10]:
<matplotlib.image.AxesImage at 0x7f09866cda60>
In [11]:
plt.figure(figsize=(3, 2)) plt.imshow(data[:,:,3])
Out[11]:
<matplotlib.image.AxesImage at 0x7f09865c00a0>
In [12]:
plt.figure(figsize=(3, 2)) plt.imshow(data[:,:,4])
Out[12]:
<matplotlib.image.AxesImage at 0x7f0986472850>
In [13]:
plt.figure(figsize=(3, 2)) plt.imshow(data[:,:,5])
Out[13]:
<matplotlib.image.AxesImage at 0x7f098642e610>
In [14]:
plt.figure(figsize=(3, 2)) plt.imshow(data[:,:,6])
Out[14]:
<matplotlib.image.AxesImage at 0x7f098698d9d0>
In [ ]: