학습일 : 2020.01.23

| numpy를 사용하는 이유

| 성능비교

| 간단실습

import numpy as np
import matplotlib.pyplot as plt
x = np.array([1, 2, 3])
y = np.array([2, 4, 6])

print(x)
print(y)

plt.plot(x, y)

[1 2 3] [2 4 6]

[<matplotlib.lines.Line2D at 0x2304fc112c8>]