교육/파이썬빅데이터분석교육

주사위 게임(파이썬) 예시

빅데이터 김교수 2022. 12. 30. 14:37
- numpy - matplotlib - paths: - /data.py

Let's plot random numbers

import matplotlib.pyplot as plt from data import make_x_and_y x, y = make_x_and_y(n=1000) fig, ax = plt.subplots() ax.scatter(x, y) fig
반응형