머신러닝의 이해와 라이브러리 활용 기초(1)강의 내용 실습 # !pip install scikit-learn# !pip install numpy# !pip install pandas# !pip install matplotlib# !pip install seabornimport sklearnimport numpy as npimport pandas as pdimport matplotlib.pyplot as pltimport seaborn as sns 1. Weight VS. Height: 몸무게와 키의 상관관계 weights = [87,81,82,92,90,61,86,66,69,69]heights = [187,174,179,192,188,160,179,168,168,174]print(len(weig..