{"id":3008,"date":"2023-07-19T15:56:18","date_gmt":"2023-07-19T15:56:18","guid":{"rendered":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/"},"modified":"2023-07-19T15:56:18","modified_gmt":"2023-07-19T15:56:18","slug":"sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/","title":{"rendered":"Scikit-learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Python\uc5d0\uc11c <a href=\"https:\/\/scikit-learn.org\/stable\/index.html\" target=\"_blank\" rel=\"noopener\">scikit-learn\uc744<\/a> \uc0ac\uc6a9\ud558\uc5ec \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc758 \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub824\ub294 \uacbd\uc6b0\uac00 \uc885\uc885 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ubd88\ud589\ud558\uac8c\ub3c4 scikit-learn\uc740 \uc77c\ubc18\uc801\uc73c\ub85c <a href=\"https:\/\/statorials.org\/ko\/\u110e\u116e\u1105\u1169\u11ab-\u1103\u1162-\u110b\u1168\u110e\u1173\u11a8\/\" target=\"_blank\" rel=\"noopener\">\uc608\uce21 \ubaa9\uc801<\/a> \uc73c\ub85c\ub9cc \uc0ac\uc6a9\ub418\ubbc0\ub85c \ud68c\uadc0 \ubaa8\ub378\uc758 \uc694\uc57d\uc744 \ubd84\uc11d\ud558\uae30 \uc704\ud55c \ub0b4\uc7a5 \uae30\ub2a5\uc744 \ub9ce\uc774 \uc81c\uacf5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub530\ub77c\uc11c Python\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\uc73c\ub824\uba74 \ub2e4\uc74c \ub450 \uac00\uc9c0 \uc635\uc158\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> scikit-learn\uc758 \uc81c\ud55c\ub41c \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong> \ub300\uc2e0 <a href=\"https:\/\/www.statsmodels.org\/stable\/index.html\" target=\"_blank\" rel=\"noopener\">\ud1b5\uacc4 \ubaa8\ub378\uc744<\/a> \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \ub2e4\uc74c pandas DataFrame\uc5d0\uc11c \uc2e4\uc81c\ub85c \uac01 \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#createDataFrame\n<span style=\"color: #000000;\">df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x1<\/span> ': [1, 2, 2, 4, 2, 1, 5, 4, 2, 4, 4],\n                   ' <span style=\"color: #ff0000;\">x2<\/span> ': [1, 3, 3, 5, 2, 2, 1, 1, 0, 3, 4],\n                   ' <span style=\"color: #ff0000;\">y<\/span> ': [76, 78, 85, 88, 72, 69, 94, 94, 88, 92, 90]})\n\n<span style=\"color: #008080;\">#view first five rows of DataFrame\n<\/span>df. <span style=\"color: #3366ff;\">head<\/span> ()\n\n       x1 x2 y\n0 1 1 76\n1 2 3 78\n2 2 3 85\n3 4 5 88\n4 2 2 72\n<\/span><\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 1: Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d \uac00\uc838\uc624\uae30<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">scikit-learn\uc744 \uc0ac\uc6a9\ud558\uc5ec <a href=\"https:\/\/statorials.org\/ko\/\u1103\u1161\u110c\u116e\u11bc-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171\/\" target=\"_blank\" rel=\"noopener\">\ub2e4\uc911 \uc120\ud615 \ud68c\uadc0<\/a> \ubaa8\ub378\uc744 \ub9de\ucd94\ub824\uba74 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">from<\/span> sklearn. <span style=\"color: #3366ff;\">linear_model<\/span> <span style=\"color: #008000;\">import<\/span> LinearRegression\n\n<span style=\"color: #008080;\">#initiate linear regression model\n<\/span>model = LinearRegression()\n\n<span style=\"color: #008080;\">#define predictor and response variables\n<\/span>x, y = df[[' <span style=\"color: #ff0000;\">x1<\/span> ', ' <span style=\"color: #ff0000;\">x2<\/span> ']], df. <span style=\"color: #3366ff;\">y<\/span>\n\n<span style=\"color: #008080;\">#fit regression model\n<\/span>model. <span style=\"color: #3366ff;\">fit<\/span> (x,y)\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">\uadf8\ub7f0 \ub2e4\uc74c \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubaa8\ub378\uc758 \ud68c\uadc0 \uacc4\uc218\uc640 \ubaa8\ub378\uc758 <a href=\"https:\/\/statorials.org\/ko\/\u110c\u1169\u11c2\u110b\u1173\u11ab-r-\u110c\u1166\u1100\u1169\u11b8-\u1100\u1161\u11b9\/\" target=\"_blank\" rel=\"noopener\">R \uc81c\uacf1 \uac12\uc744<\/a> \ucd94\ucd9c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#display regression coefficients and R-squared value of model<\/span>\n<span style=\"color: #008000;\">print<\/span> (model. <span style=\"color: #3366ff;\">intercept_<\/span> , model. <span style=\"color: #3366ff;\">coef_<\/span> , model. <span style=\"color: #3366ff;\">score<\/span> (X, y))\n\n70.4828205704 [5.7945 -1.1576] 0.766742556527\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \ucd9c\ub825\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc801\ud569 \ud68c\uadc0 \ubaa8\ub378\uc5d0 \ub300\ud55c \ubc29\uc815\uc2dd\uc744 \uc791\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">y = 70.48 + 5.79x <sub>1<\/sub> \u2013 1.16x <sub>2<\/sub><\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub610\ud55c \ubaa8\ub378\uc758 R <sup>2<\/sup> \uac12\uc774 76.67\uc784\uc744 \uc54c \uc218 \uc788\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774\ub294 \ubc18\uc751 \ubcc0\uc218\uc758 \ubcc0\ub3d9 \uc911 <strong>76.67%\uac00<\/strong> \ubaa8\ub378\uc758 \ub450 \uc608\uce21 \ubcc0\uc218\uc5d0 \uc758\ud574 \uc124\uba85\ub420 \uc218 \uc788\uc74c\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \uacb0\uacfc\ub294 \uc720\uc6a9\ud558\uc9c0\ub9cc \ubaa8\ub378\uc758 <a href=\"https:\/\/statorials.org\/ko\/\u1112\u116c\u1100\u1171-\u1107\u116e\u11ab\u1109\u1165\u11a8\u110b\u1174-\u110c\u1165\u11ab\u1107\u1161\u11ab\u110c\u1165\u11a8\u110b\u1175\u11ab-\u110c\u116e\u11bc\u110b\u116d\u1109\u1165\u11bc\u110b\u1166-\u1103\u1162\u1112\u1161\u11ab-f-\u1110\u1166\u1109\u1173\u1110\u1173\u1105\u1173\u11af-\u110b\u1175\u1112\u1162\u1112\u1161\u1100\u1175-\u110b\u1171\u1112\u1161\u11ab-\u1100\u1161\u11ab\u1103\u1161\u11ab\u1112\u1161\u11ab-\u1100\u1161\u110b\u1175\u1103\u1173\/\" target=\"_blank\" rel=\"noopener\">\uc804\uccb4 F \ud1b5\uacc4<\/a> , \uac1c\ubcc4 <a href=\"https:\/\/statorials.org\/ko\/\u1112\u116c\u1100\u1171-\u1100\u1168\u1109\u116e\u1105\u1173\u11af-\u1112\u1162\u1109\u1165\u11a8\u1112\u1161\u1102\u1173\u11ab-\u1107\u1161\u11bc\u1107\u1165\u11b8\/\" target=\"_blank\" rel=\"noopener\">\ud68c\uadc0 \uacc4\uc218<\/a> \uc758 p-\uac12 \ubc0f \ubaa8\ub378\uc774 \ubaa8\ub378\uc5d0 \uc5bc\ub9c8\ub098 \uc798 \ub9de\ub294\uc9c0 \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub420 \uc218 \uc788\ub294 \uae30\ud0c0 \uc720\uc6a9\ud55c \uce21\uc815\uac12\uc744 \uc544\uc9c1 \uc54c\uc9c0 \ubabb\ud569\ub2c8\ub2e4. \ub370\uc774\ud130\uc138\ud2b8.\ub370\uc774\ud130\uc138\ud2b8.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 2: Statsmodels\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d \uac00\uc838\uc624\uae30<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Python\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378\uc758 \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub824\uba74 <strong>statsmodels<\/strong> \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \uac00\uc7a5 \uc88b\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \uc774 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc774\uc804 \uc608\uc81c\uc640 \ub3d9\uc77c\ud55c \ub2e4\uc911 \uc120\ud615 \ud68c\uadc0 \ubaa8\ub378\uc744 \ub9de\ucd94\uace0 \ubaa8\ub378 \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n\n<span style=\"color: #008080;\">#define response variable\n<\/span>y = df[' <span style=\"color: #ff0000;\">y<\/span> ']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x = df[[' <span style=\"color: #ff0000;\">x1<\/span> ', ' <span style=\"color: #ff0000;\">x2<\/span> ']]\n\n<span style=\"color: #008080;\">#add constant to predictor variables\n<\/span>x = sm. <span style=\"color: #3366ff;\">add_constant<\/span> (x)\n\n<span style=\"color: #008080;\">#fit linear regression model\n<\/span>model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y,x). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #008080;\">#view model summary\n<\/span><span style=\"color: #008000;\">print<\/span> ( <span style=\"color: #3366ff;\">model.summary<\/span> ())\n\n                            OLS Regression Results                            \n==================================================== ============================\nDept. Variable: y R-squared: 0.767\nModel: OLS Adj. R-squared: 0.708\nMethod: Least Squares F-statistic: 13.15\nDate: Fri, 01 Apr 2022 Prob (F-statistic): 0.00296\nTime: 11:10:16 Log-Likelihood: -31.191\nNo. Comments: 11 AIC: 68.38\nDf Residuals: 8 BIC: 69.57\nDf Model: 2                                         \nCovariance Type: non-robust                                         \n==================================================== ============================\n                 coef std err t P&gt;|t| [0.025 0.975]\n-------------------------------------------------- ----------------------------\nconst 70.4828 3.749 18.803 0.000 61.839 79.127\nx1 5.7945 1.132 5.120 0.001 3.185 8.404\nx2 -1.1576 1.065 -1.087 0.309 -3.613 1.298\n==================================================== ============================\nOmnibus: 0.198 Durbin-Watson: 1.240\nProb(Omnibus): 0.906 Jarque-Bera (JB): 0.296\nSkew: -0.242 Prob(JB): 0.862\nKurtosis: 2.359 Cond. No. 10.7\n==================================================== ============================\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ud68c\uadc0 \uacc4\uc218\uc640 R-\uc81c\uacf1 \uac12\uc740 scikit-learn\uc5d0\uc11c \uacc4\uc0b0\ud55c \uac12\uacfc \uc77c\uce58\ud558\uc9c0\ub9cc \ud68c\uadc0 \ubaa8\ub378\uc5d0 \ub300\ud55c \ub2e4\ub978 \uc720\uc6a9\ud55c \uce21\uc815\ud56d\ubaa9\ub3c4 \ub9ce\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, \uac01 \uac1c\ubcc4 \uc608\uce21 \ubcc0\uc218\uc5d0 \ub300\ud55c p-\uac12\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">x <sub>1<\/sub> \uc5d0 \ub300\ud55c p-\uac12 = 0.001<\/span><\/li>\n<li> <span style=\"color: #000000;\">x <sub>2<\/sub> \uc5d0 \ub300\ud55c p-\uac12 = 0.309<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\ub610\ud55c \ubaa8\ub378\uc758 \uc804\uccb4 F-\ud1b5\uacc4\ub7c9, <a href=\"https:\/\/statorials.org\/ko\/\u110c\u1169\u110c\u1165\u11bc\u1103\u116c\u11ab-r-\u110c\u1166\u1100\u1169\u11b8-\u1112\u1162\u1109\u1165\u11a8\/\" target=\"_blank\" rel=\"noopener\">\uc218\uc815\ub41c R-\uc81c\uacf1<\/a> \uac12, \ubaa8\ub378 <a href=\"https:\/\/statorials.org\/ko\" target=\"_blank\" rel=\"noopener\">AIC \uac12<\/a> \ub4f1\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\ucd94\uac00 \ub9ac\uc18c\uc2a4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \uc791\uc5c5\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/\u1111\u1161\u110b\u1175\u110a\u1165\u11ab\u110b\u1174-\u1100\u1161\u11ab\u1103\u1161\u11ab\u1112\u1161\u11ab-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python\uc5d0\uc11c \ub2e8\uc21c \uc120\ud615 \ud68c\uadc0\ub97c \uc218\ud589\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-\u1111\u1161\u110b\u1175\u110a\u1165\u11ab\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python\uc5d0\uc11c \ub2e4\uc911 \uc120\ud615 \ud68c\uadc0\ub97c \uc218\ud589\ud558\ub294 \ubc29\ubc95<\/a><br \/><a href=\"https:\/\/statorials.org\/ko\/\u1111\u1161\u110b\u1175\u110a\u1165\u11ab\u110b\u1174-aic\/\" target=\"_blank\" rel=\"noopener\">Python\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378\uc758 AIC\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python\uc5d0\uc11c scikit-learn\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc758 \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub824\ub294 \uacbd\uc6b0\uac00 \uc885\uc885 \uc788\uc2b5\ub2c8\ub2e4. \ubd88\ud589\ud558\uac8c\ub3c4 scikit-learn\uc740 \uc77c\ubc18\uc801\uc73c\ub85c \uc608\uce21 \ubaa9\uc801 \uc73c\ub85c\ub9cc \uc0ac\uc6a9\ub418\ubbc0\ub85c \ud68c\uadc0 \ubaa8\ub378\uc758 \uc694\uc57d\uc744 \ubd84\uc11d\ud558\uae30 \uc704\ud55c \ub0b4\uc7a5 \uae30\ub2a5\uc744 \ub9ce\uc774 \uc81c\uacf5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c Python\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\uc73c\ub824\uba74 \ub2e4\uc74c \ub450 \uac00\uc9c0 \uc635\uc158\uc774 \uc788\uc2b5\ub2c8\ub2e4. 1. scikit-learn\uc758 \uc81c\ud55c\ub41c \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694. 2. \ub300\uc2e0 \ud1b5\uacc4 \ubaa8\ub378\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. \ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \ub2e4\uc74c pandas DataFrame\uc5d0\uc11c \uc2e4\uc81c\ub85c [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-3008","post","type-post","status-publish","format-standard","hentry","category-20"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/ko\/sklearn-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-\u110b\u116d\u110b\u1163\u11a8\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/sklearn-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-\u110b\u116d\u110b\u1163\u11a8\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T15:56:18+00:00\" \/>\n<meta name=\"author\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/\",\"url\":\"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/\",\"name\":\"Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-19T15:56:18+00:00\",\"dateModified\":\"2023-07-19T15:56:18+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Scikit-learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/ko\/#website\",\"url\":\"https:\/\/statorials.org\/ko\/\",\"name\":\"Statorials\",\"description\":\"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/ko\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\",\"name\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\"},\"description\":\"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30\",\"sameAs\":[\"https:\/\/statorials.org\/ko\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/ko\/sklearn-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-\u110b\u116d\u110b\u1163\u11a8\/","og_locale":"ko_KR","og_type":"article","og_title":"Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/sklearn-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-\u110b\u116d\u110b\u1163\u11a8\/","og_site_name":"Statorials","article_published_time":"2023-07-19T15:56:18+00:00","author":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","Est. reading time":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/","url":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/","name":"Scikit-Learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-19T15:56:18+00:00","dateModified":"2023-07-19T15:56:18+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 scikit-learn\uc73c\ub85c \uc0dd\uc131\ub41c \ud68c\uadc0 \ubaa8\ub378\uc5d0\uc11c \uc694\uc57d\uc744 \ucd94\ucd9c\ud558\ub294 \ubc29\ubc95\uc744 \uc608\uc2dc\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/sklearn-%e1%84%89%e1%85%a5%e1%86%ab%e1%84%92%e1%85%a7%e1%86%bc-%e1%84%92%e1%85%ac%e1%84%80%e1%85%b1-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%a3%e1%86%a8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Scikit-learn\uc5d0\uc11c \ud68c\uadc0 \ubaa8\ub378 \uc694\uc57d\uc744 \uc5bb\ub294 \ubc29\ubc95"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/ko\/#website","url":"https:\/\/statorials.org\/ko\/","name":"Statorials","description":"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/ko\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4","name":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8"},"description":"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30","sameAs":["https:\/\/statorials.org\/ko"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/3008","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/comments?post=3008"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/3008\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=3008"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=3008"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=3008"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}