1번
<aside> 💡 다음 중 Numpy에 대한 설명으로 옳은 것을 고르세요. (4번)
</aside>

2번
<aside> 💡 다음 중 Broadcasting에 대한 설명으로 옳은 것을 고르세요. (4번)
</aside>

3번 데이터셋에 대해 슬라이싱
문제)
<aside> 💩 위의 코드는 사이킷런에서 제공하는 붓꽃에 대한 데이터셋입니다. 위의 코드를 실행시켜보고 데이터가 어떤식으로 이루어져있는지 먼저 확인을 해보세요. iris_data 변수에는 각 꽃별로 꽃받침(sepal)과 꽃잎(petal)에 대한 정보가 있는데 아래의 변수에 각각 해당하는 array를 넣어서 출력해보세요.
sl = [sepal length에 대한 array] sw = [sepal width에 대한 array] pl = [petal length에 대한 array] pw = [petal width에 대한 array]
</aside>
from sklearn.datasets import load_iris
import numpy as np
iris_raw = load_iris(as_frame=True)
iris_data = iris_raw['data']
iris_data
table=np.array(iris_data)
sl = table[0:,0]
sw = table[0:,1]
pl = table[0:,2]
pw = table[0:,3]
print(pw)
4번