{"id":3006,"date":"2023-07-19T15:56:18","date_gmt":"2023-07-19T15:56:18","guid":{"rendered":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/"},"modified":"2023-07-19T15:56:18","modified_gmt":"2023-07-19T15:56:18","slug":"sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81","status":"publish","type":"post","link":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/","title":{"rendered":"Scikit-learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Python \u3067<a href=\"https:\/\/scikit-learn.org\/stable\/index.html\" target=\"_blank\" rel=\"noopener\">scikit-learn<\/a>\u3092\u4f7f\u7528\u3057\u3066\u4f5c\u6210\u3055\u308c\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u62bd\u51fa\u3057\u305f\u3044\u5834\u5408\u304c\u3088\u304f\u3042\u308a\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u6b8b\u5ff5\u306a\u304c\u3089\u3001scikit-learn \u306f\u4e00\u822c\u306b<a href=\"https:\/\/statorials.org\/ja\/\u63a8\u8ad6\u3068\u4e88\u6e2c\/\" target=\"_blank\" rel=\"noopener\">\u4e88\u6e2c\u76ee\u7684<\/a>\u3067\u306e\u307f\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u3001\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u306e\u7d44\u307f\u8fbc\u307f\u95a2\u6570\u306f\u3042\u307e\u308a\u63d0\u4f9b\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u3057\u305f\u304c\u3063\u3066\u3001Python \u3067\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3057\u305f\u3044\u5834\u5408\u306f\u30012 \u3064\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u3042\u308a\u307e\u3059\u3002<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> scikit-learn \u306e\u9650\u5b9a\u3055\u308c\u305f\u6a5f\u80fd\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong>\u4ee3\u308f\u308a\u306b<a href=\"https:\/\/www.statsmodels.org\/stable\/index.html\" target=\"_blank\" rel=\"noopener\">\u7d71\u8a08\u30e2\u30c7\u30eb<\/a>\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u6b21\u306e\u4f8b\u306f\u3001\u6b21\u306e pandas DataFrame \u3067\u5404\u30e1\u30bd\u30c3\u30c9\u3092\u5b9f\u969b\u306b\u4f7f\u7528\u3059\u308b\u65b9\u6cd5\u3092\u793a\u3057\u3066\u3044\u307e\u3059\u3002<\/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>\u65b9\u6cd5 1: Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">\u6b21\u306e\u30b3\u30fc\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001scikit-learn \u3092\u4f7f\u7528\u3057\u3066<a href=\"https:\/\/statorials.org\/ja\/\u91cd\u7dda\u5f62\u56de\u5e30\/\" target=\"_blank\" rel=\"noopener\">\u91cd\u7dda\u5f62\u56de\u5e30<\/a>\u30e2\u30c7\u30eb\u3092\u8fd1\u4f3c\u3067\u304d\u307e\u3059\u3002<\/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;\">\u6b21\u306b\u3001\u6b21\u306e\u30b3\u30fc\u30c9\u3092\u4f7f\u7528\u3057\u3066\u3001\u30e2\u30c7\u30eb\u304b\u3089\u56de\u5e30\u4fc2\u6570\u3068\u30e2\u30c7\u30eb\u306e<a href=\"https:\/\/statorials.org\/ja\/\u826f\u597d\u306ar\u4e8c\u4e57\u5024\/\" target=\"_blank\" rel=\"noopener\">R \u4e8c\u4e57\u5024<\/a>\u3092\u62bd\u51fa\u3067\u304d\u307e\u3059\u3002<\/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;\">\u3053\u306e\u51fa\u529b\u3092\u4f7f\u7528\u3057\u3066\u3001\u8fd1\u4f3c\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u65b9\u7a0b\u5f0f\u3092\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/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;\">\u30e2\u30c7\u30eb\u306e R <sup>2<\/sup>\u5024\u304c 76.67 \u3067\u3042\u308b\u3053\u3068\u3082\u308f\u304b\u308a\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u3053\u308c\u306f\u3001\u5fdc\u7b54\u5909\u6570\u306e\u5909\u52d5\u306e<strong>76.67%<\/strong>\u304c\u30e2\u30c7\u30eb\u5185\u306e 2 \u3064\u306e\u4e88\u6e2c\u5909\u6570\u306b\u3088\u3063\u3066\u8aac\u660e\u3067\u304d\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u3053\u306e\u7d50\u679c\u306f\u6709\u7528\u3067\u3059\u304c\u3001\u30e2\u30c7\u30eb\u306e<a href=\"https:\/\/statorials.org\/ja\/\u56de\u5e30\u306b\u304a\u3051\u308b\u5168\u4f53\u7684\u306a\u6709\u610f\u6027\u306e-f-\u691c\u5b9a\u3092\u7406\u89e3\u3059\u308b\u305f\u3081\u306e\u7c21\u5358\u306a\u30ab\u3099\u30a4\u30c8\u3099\/\" target=\"_blank\" rel=\"noopener\">\u5168\u4f53\u7684\u306a F \u7d71\u8a08\u91cf<\/a>\u3001\u500b\u3005\u306e<a href=\"https:\/\/statorials.org\/ja\/\u56de\u5e30\u4fc2\u6570\u3092\u3068\u3099\u3046\u89e3\u91c8\u3059\u308b\u304b\/\" target=\"_blank\" rel=\"noopener\">\u56de\u5e30\u4fc2\u6570\u306e p \u5024\u3001<\/a>\u304a\u3088\u3073\u30e2\u30c7\u30eb\u304c\u30e2\u30c7\u30eb\u306b\u3069\u306e\u7a0b\u5ea6\u9069\u5408\u3057\u3066\u3044\u308b\u304b\u3092\u7406\u89e3\u3059\u308b\u306e\u306b\u5f79\u7acb\u3064\u305d\u306e\u4ed6\u306e\u6709\u7528\u306a\u5c3a\u5ea6\u306f\u307e\u3060\u308f\u304b\u308a\u307e\u305b\u3093\u3002\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8.\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u3002<\/span><\/p>\n<h3><span style=\"color: #000000;\"><strong>\u65b9\u6cd5 2: Statsmodels \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">Python \u3067\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u5834\u5408\u306f\u3001 <strong>statsmodels<\/strong>\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f7f\u7528\u3059\u308b\u306e\u304c\u6700\u9069\u3067\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u6b21\u306e\u30b3\u30fc\u30c9\u306f\u3001\u3053\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f7f\u7528\u3057\u3066\u524d\u306e\u4f8b\u3068\u540c\u3058\u91cd\u7dda\u5f62\u56de\u5e30\u30e2\u30c7\u30eb\u3092\u8fd1\u4f3c\u3057\u3001\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u793a\u3057\u3066\u3044\u307e\u3059\u3002<\/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;\">\u56de\u5e30\u4fc2\u6570\u3068 R \u4e8c\u4e57\u5024\u306f scikit-learn \u306b\u3088\u3063\u3066\u8a08\u7b97\u3055\u308c\u305f\u3082\u306e\u3068\u4e00\u81f4\u3057\u307e\u3059\u304c\u3001\u56de\u5e30\u30e2\u30c7\u30eb\u306b\u306f\u4ed6\u306b\u3082\u5927\u91cf\u306e\u6709\u7528\u306a\u30e1\u30c8\u30ea\u30af\u30b9\u304c\u3042\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u305f\u3068\u3048\u3070\u3001\u500b\u3005\u306e\u4e88\u6e2c\u5b50\u5909\u6570\u306e p \u5024\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">x <sub>1<\/sub>\u306e p \u5024 = 0.001<\/span><\/li>\n<li> <span style=\"color: #000000;\">x <sub>2<\/sub>\u306e p \u5024 = 0.309<\/span><\/li>\n<\/ul>\n<p><span style=\"color: #000000;\">\u30e2\u30c7\u30eb\u306e\u5168\u4f53\u7684\u306a F \u7d71\u8a08\u91cf\u3001<a href=\"https:\/\/statorials.org\/ja\/\u8abf\u6574\u3055\u308c\u305fr\u4e8c\u4e57\u89e3\u91c8\/\" target=\"_blank\" rel=\"noopener\">\u8abf\u6574\u3055\u308c\u305f R \u4e8c\u4e57<\/a>\u5024\u3001\u30e2\u30c7\u30eb<a href=\"https:\/\/statorials.org\/ja\" target=\"_blank\" rel=\"noopener\">AIC \u5024<\/a>\u306a\u3069\u3082\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<\/span><\/p>\n<h3><span style=\"color: #000000;\"><strong>\u8ffd\u52a0\u30ea\u30bd\u30fc\u30b9<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">\u6b21\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001Python \u3067\u4ed6\u306e\u4e00\u822c\u7684\u306a\u64cd\u4f5c\u3092\u5b9f\u884c\u3059\u308b\u65b9\u6cd5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ja\/python\u3066\u3099\u306e\u5358\u7d14\u306a\u7dda\u5f62\u56de\u5e30\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python \u3067\u5358\u7d14\u306a\u7dda\u5f62\u56de\u5e30\u3092\u5b9f\u884c\u3059\u308b\u65b9\u6cd5<\/a><br \/><a href=\"https:\/\/statorials.org\/ja\/\u7dda\u5f62\u56de\u5e30python\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python \u3067\u91cd\u56de\u5e30\u3092\u5b9f\u884c\u3059\u308b\u65b9\u6cd5<\/a><br \/><a href=\"https:\/\/statorials.org\/ja\/python\u306eaic\/\" target=\"_blank\" rel=\"noopener\">Python \u3067\u56de\u5e30\u30e2\u30c7\u30eb\u306e AIC \u3092\u8a08\u7b97\u3059\u308b\u65b9\u6cd5<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python \u3067scikit-learn\u3092\u4f7f\u7528\u3057\u3066\u4f5c\u6210\u3055\u308c\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u62bd\u51fa\u3057\u305f\u3044\u5834\u5408\u304c\u3088\u304f\u3042\u308a\u307e\u3059\u3002 \u6b8b\u5ff5\u306a\u304c\u3089\u3001scikit-learn \u306f\u4e00\u822c\u306b\u4e88\u6e2c\u76ee\u7684\u3067\u306e\u307f\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u3001\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u306e\u7d44 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-3006","post","type-post","status-publish","format-standard","hentry","category-16"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials<\/title>\n<meta name=\"description\" content=\"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\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\/ja\/sklearn-\u7dda\u5f62\u56de\u5e30\u306e\u6982\u8981\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ja\/sklearn-\u7dda\u5f62\u56de\u5e30\u306e\u6982\u8981\/\" \/>\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=\"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/\",\"url\":\"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/\",\"name\":\"Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ja\/#website\"},\"datePublished\":\"2023-07-19T15:56:18+00:00\",\"dateModified\":\"2023-07-19T15:56:18+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ja\/#\/schema\/person\/86b92d2dd87368b26360d19d9c6a5d83\"},\"description\":\"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u5bb6\",\"item\":\"https:\/\/statorials.org\/ja\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Scikit-learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/ja\/#website\",\"url\":\"https:\/\/statorials.org\/ja\/\",\"name\":\"Statorials\",\"description\":\"\u7d71\u8a08\u80fd\u529b\u3078\u306e\u30ac\u30a4\u30c9\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/ja\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/ja\/#\/schema\/person\/86b92d2dd87368b26360d19d9c6a5d83\",\"name\":\"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/statorials.org\/ja\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/ja\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/ja\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb\"},\"description\":\"\u79c1\u306f\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u3067\u3059\u3002\u9000\u8077\u3057\u305f\u7d71\u8a08\u6559\u6388\u304b\u3089\u3001\u5c02\u4efb\u306e Statorials \u6559\u80b2\u8005\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u7d71\u8a08\u5206\u91ce\u306b\u304a\u3051\u308b\u8c4a\u5bcc\u306a\u7d4c\u9a13\u3068\u5c02\u9580\u77e5\u8b58\u3092\u6d3b\u304b\u3057\u3066\u3001\u79c1\u306f Statorials \u3092\u901a\u3058\u3066\u5b66\u751f\u306b\u529b\u3092\u4e0e\u3048\u308b\u305f\u3081\u306b\u81ea\u5206\u306e\u77e5\u8b58\u3092\u5171\u6709\u3059\u308b\u3053\u3068\u306b\u5c3d\u529b\u3057\u3066\u3044\u307e\u3059\u3002\u3082\u3063\u3068\u77e5\u308b\",\"sameAs\":[\"http:\/\/statorials.org\/ja\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials","description":"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002","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\/ja\/sklearn-\u7dda\u5f62\u56de\u5e30\u306e\u6982\u8981\/","og_locale":"ja_JP","og_type":"article","og_title":"Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials","og_description":"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/statorials.org\/ja\/sklearn-\u7dda\u5f62\u56de\u5e30\u306e\u6982\u8981\/","og_site_name":"Statorials","article_published_time":"2023-07-19T15:56:18+00:00","author":"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/","url":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/","name":"Scikit-Learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ja\/#website"},"datePublished":"2023-07-19T15:56:18+00:00","dateModified":"2023-07-19T15:56:18+00:00","author":{"@id":"https:\/\/statorials.org\/ja\/#\/schema\/person\/86b92d2dd87368b26360d19d9c6a5d83"},"description":"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067\u306f\u3001scikit-learn \u3067\u4f5c\u6210\u3057\u305f\u56de\u5e30\u30e2\u30c7\u30eb\u304b\u3089\u6982\u8981\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5\u3092\u4f8b\u3092\u7528\u3044\u3066\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ja\/sklearn-%e7%b7%9a%e5%bd%a2%e5%9b%9e%e5%b8%b0%e3%81%ae%e6%a6%82%e8%a6%81\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u5bb6","item":"https:\/\/statorials.org\/ja\/"},{"@type":"ListItem","position":2,"name":"Scikit-learn \u304b\u3089\u56de\u5e30\u30e2\u30c7\u30eb\u306e\u6982\u8981\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/ja\/#website","url":"https:\/\/statorials.org\/ja\/","name":"Statorials","description":"\u7d71\u8a08\u80fd\u529b\u3078\u306e\u30ac\u30a4\u30c9","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/ja\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/statorials.org\/ja\/#\/schema\/person\/86b92d2dd87368b26360d19d9c6a5d83","name":"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/statorials.org\/ja\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/ja\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/ja\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u30fb\u30a2\u30f3\u30c0\u30fc\u30bd\u30f3\u535a\u58eb"},"description":"\u79c1\u306f\u30d9\u30f3\u30b8\u30e3\u30df\u30f3\u3067\u3059\u3002\u9000\u8077\u3057\u305f\u7d71\u8a08\u6559\u6388\u304b\u3089\u3001\u5c02\u4efb\u306e Statorials \u6559\u80b2\u8005\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u7d71\u8a08\u5206\u91ce\u306b\u304a\u3051\u308b\u8c4a\u5bcc\u306a\u7d4c\u9a13\u3068\u5c02\u9580\u77e5\u8b58\u3092\u6d3b\u304b\u3057\u3066\u3001\u79c1\u306f Statorials \u3092\u901a\u3058\u3066\u5b66\u751f\u306b\u529b\u3092\u4e0e\u3048\u308b\u305f\u3081\u306b\u81ea\u5206\u306e\u77e5\u8b58\u3092\u5171\u6709\u3059\u308b\u3053\u3068\u306b\u5c3d\u529b\u3057\u3066\u3044\u307e\u3059\u3002\u3082\u3063\u3068\u77e5\u308b","sameAs":["http:\/\/statorials.org\/ja"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/posts\/3006","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/comments?post=3006"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/posts\/3006\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/media?parent=3006"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/categories?post=3006"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ja\/wp-json\/wp\/v2\/tags?post=3006"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}