1 2 3 4 5 6 7 8 9 10 11 12 13 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅͰúÇÐ(»ý´ÉÃâÆÇ»ç 2020) # 12.13 µ¥ÀÌÅ͸¦ °£ÆíÇÏ°Ô ºÐ¼®ÇÒ ¼ö ÀÖ´Â ±â´ÉÀÌ ÀÖ´Ù, 320ÂÊ # import pandas as pd weather = pd.read_csv('d:/data/weather.csv', index_col = 0, encoding='CP949') print(weather.describe()) print('Æò±Õ ºÐ¼® -----------------------------') print(weather.mean()) print('Ç¥ÁØÆíÂ÷ ºÐ¼® -----------------------------') print(weather.std()) | cs |