{"id":2918,"date":"2021-12-01T11:37:00","date_gmt":"2021-12-01T02:37:00","guid":{"rendered":"https:\/\/yorozu.cloudfree.jp\/wordpress\/?p=2918"},"modified":"2024-11-24T11:58:16","modified_gmt":"2024-11-24T02:58:16","slug":"%e3%80%8c%e3%81%82%e3%82%84%e3%82%81%e3%80%8d%e3%81%ae%e7%a8%ae%e9%a1%9e%e5%88%a4%e5%88%a5%ef%bc%88%e3%81%9d%e3%81%ae%ef%bc%91%ef%bc%89","status":"publish","type":"post","link":"https:\/\/yorozu.cloudfree.jp\/wordpress\/?p=2918","title":{"rendered":"\u30a2\u30e4\u30e1\u306e\u7a2e\u985e\u5224\u5225\uff08\u305d\u306e\uff11\uff09"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u5b9f\u884c\u4f8b\u306f\u300csaka.mokumoku\u300d\u306e\u300cGoogle Colabotry\u300d\u74b0\u5883\u306b\u4fdd\u5b58\u3057\u3066\u3042\u308b<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">iris\uff08\u83d6\u84b2\uff1a\u30a2\u30e4\u30e1\uff09\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u3092\u4f7f\u3063\u3066\u9032\u3081\u308b<br>\u3000\uff08\u305d\u306e\uff11\uff09\u306f\u884c\u756a\u53f7\uff11\uff5e\uff12\uff17\u307e\u3067\u3092\u89e3\u8aac\u3059\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>#\n#\u3000\u3000\u3000\uff11\uff0e\u30c7\u30fc\u30bf\u306e\u8aad\u307f\u8fbc\u307f\n#\nimport pandas as pd\nimport numpy  as np\nimport matplotlib.pyplot as plt\nimport seaborn as sns\n#\nfrom sklearn import datasets\n#      \n%matplotlib inline\n#\niris_datasets =  datasets.load_iris()\n#\n#\n#print(&quot;\uff0a\uff0a\uff0a\u8a73\u7d30\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#print(iris_datasets.DESCR)\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#\n#\n#\u3000\u3000\u3000\uff12\uff0e\u30c7\u30fc\u30bf\u306e\u78ba\u8a8d\n#\niris = pd.DataFrame(iris_datasets.data,columns = iris_datasets.feature_names)\niris[&#39;target&#39;] = iris_datasets.target\n#\niris.head()\n#\n#\n#\u3000\u3000\u3000\uff13\uff0e\u30e2\u30c7\u30eb\u306e\u5b66\u7fd2\n#\ntarget = iris[&#39;target&#39;]\ndata = iris[iris_datasets.feature_names]\n#\nfrom sklearn import model_selection\ndata_train,data_test,target_train,target_test = \\\n        model_selection.train_test_split(data,target,train_size=0.8)\n#\nprint(target_train.shape,target_test.shape)\nprint(data_train.shape,data_test.shape)\n#\nfrom sklearn.svm import SVC\nmodel = SVC(gamma=&#39;scale&#39;)\nmodel.fit(data_train,target_train)\n#\ntarget_predict = model.predict(data_test)\n#\nprint(target_predict)\nprint(np.array(target_test))\n#\nmodel.score(data_test,target_test)\n#\n#\n#\u3000\u3000\u3000\uff14\uff0e\u30e2\u30c7\u30eb\u306e\u8a55\u4fa1\n#\nfrom sklearn.metrics import precision_score\nfrom sklearn.metrics import recall_score\nfrom sklearn.metrics import f1_score\n#\nprecision = precision_score(target_test,target_predict,average=&#39;micro&#39;)\nrecall = recall_score(target_test,target_predict,average=&#39;micro&#39;)\nf1 = f1_score(target_test,target_predict,average=&#39;micro&#39;)\n#\nprint(&#39;\u9069\u5408\u7387(precision)&#39;,precision)\nprint(&#39;\u518d\u73fe\u7387(recall)&#39;,recall)\nprint(&#39;\uff26\u5024(F-measure)&#39;,f1)\n#\n#\n#\n#\u3000\u30c7\u30fc\u30bf\u306e\u5148\u982d\n#print(&quot;\uff0a\uff0a\uff0a\u5148\u982d\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#iris.head()\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#\n#\u3000\u30c7\u30fc\u30bf\u306e\u6982\u8981\n#print(&quot;\uff0a\uff0a\uff0a\u6982\u8981\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#iris.info()\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n#\n#\u3000\u30c7\u30fc\u30bf\u306e\u8981\u7d04\u7d71\u8a08\u91cf\n#print(&quot;\uff0a\uff0a\uff0a\u7d71\u8a08\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#iris.describe()\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#\n#\u3000\u30c7\u30fc\u30bf\u306e\u5f62\u72b6\n#print(&quot;\uff0a\uff0a\uff0a\u5f62\u72b6\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#iris.shape\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#\n#\u3000\u30c7\u30fc\u30bf\u8981\u7d20\u306e\u53d6\u308a\u51fa\u3057\n#print(&quot;\uff0a\uff0a\uff0a\u8981\u7d20\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#iris.iloc[:10]\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#\n#\u3000\u6761\u4ef6\u306b\u5408\u3046\u884c\u306e\u53d6\u5f97\n#print(&quot;\uff0a\uff0a\uff0a\u6761\u4ef6\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#iris.query(&quot;target==1&quot;)\n#print(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;)\n#\n#<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u4e0b\u306f\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3068\u89e3\u8aac<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>\uff11.\u30c7\u30fc\u30bf\u306e\u8aad\u307f\u8fbc\u307f<\/strong><\/h4>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\" data-show-lang=\"1\"><code>#\nimport pandas as pd\nimport numpy  as np\nimport matplotlib.pyplot as plt\nimport seaborn as sns<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u5fc5\u8981\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u8aad\u8fbc\u3080<br>\u3000\u3000\u3000\u30e9\u30a4\u30d6\u30e9\u30ea\u5185\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u3082\u3067\u304d\u308b<br>\u3000\u3000\u3000\u8aad\u307f\u8fbc\u3093\u3060\u3089\u51e6\u7406\u3057\u3084\u3059\u3044\u3088\u3046\u306b\u300cas\u300d\u3092\u4f7f\u3063\u3066\u540d\u524d\u3092\u4ed8\u4e0e\u3059\u308b<br>\u3000\u3000\u3000\u540c\u4e00\u540d\u306b\u306a\u308b\u5834\u5408\u306f\u4e92\u3044\u306b\u7570\u306a\u308b\u540d\u524d\u3092\u4ed8\u4e0e\u3059\u308b<br><br>\u3000\u5404\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u8aac\u660e\u3000<br>\u3000\u3000\u3000pandas\u30fb\u30fb\u30fb\u30c7\u30fc\u30bf\u306e\u78ba\u8a8d\u3084\u62bd\u51fa\u306b\u9069\u3057\u305f\u30e9\u30a4\u30d6\u30e9\u30ea<br>\u3000\u3000\u3000numpy\u30fb\u30fb\u30fb\u884c\u5217\u8a08\u7b97\u7528\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc<br>\u3000\u3000\u3000matplotlib.pyplot\u30fb\u30fb\u30fb\u30b0\u30e9\u30d5\u63cf\u753b\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc\u306epyplot\u90e8\u5206<br>\u3000\u3000\u3000seaborn\u30fb\u30fb\u30fb\u898b\u305f\u76ee\u306e\u512a\u308c\u305f\u30b0\u30e9\u30d5\u63cf\u753b\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>#\nfrom sklearn import datasets<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u6e96\u5099<br>\u3000\u3000\u3000sklearn\u30fb\u30fb\u30fb\u6a5f\u68b0\u5b66\u7fd2\u7528\u306e\u30e2\u30c7\u30eb\u3084\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf<br>\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u5206\u985e\u3084\u56de\u5e30\u306a\u3069\u306e\u6a5f\u68b0\u5b66\u7fd2\u306b\u4f7f\u3048\u308bdatasets\u7fa4<br>\u3000\u3000\u3000sklearn\u30e2\u30b8\u30e5\u30fc\u30eb\u304b\u3089datasets\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u53d6\u308a\u51fa\u3059<br><br>\u3000\u300cscikit-learn\u300d\u306f\u300c\u30b5\u30a4\u30ad\u30c3\u30c8\u30fb\u30e9\u30fc\u30f3\u300d\u3068\u8aad\u307f<br>\u3000\u3000\u3000Python\u306e\u6a5f\u68b0\u5b66\u7fd2\u30e9\u30a4\u30d6\u30e9\u30ea\uff08\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\uff09\u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>#         \n%matplotlib inline<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u30b0\u30e9\u30d5\u3000\u8868\u793a\u306e\u8a2d\u5b9a<br>\u3000\u3000\u3000%\u306f\u30a4\u30f3\u30bf\u30e9\u30af\u30c6\u30a3\u30d6\u30b5\u30dd\u30fc\u30c8\u3092\u6709\u52b9\u5316\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9<br>\u3000\u3000\u3000\u300cinline\u300d\u3068\u306f\u305d\u306e\u5834\uff08\u74b0\u5883\u3084\u72b6\u614b\uff09\u3067\u8868\u793a\u3059\u308b\u610f\u5473<br>\u3000\u3000\u3000\u3000\u3000\uff08\u6ce8\uff09\u30b0\u30e9\u30d5\u304c\u66f8\u3051\u306a\u3044\u5b9f\u884c\u74b0\u5883\u3060\u3068\u3053\u306e\u884c\u306f\u30a8\u30e9\u30fc\u306b\u306a\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>#\niris_datasets =  datasets.load_iris()<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000iris\u306e\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u3092\u8aad\u307f\u8fbc\u3080<br>\u3000\u3000\u3000load_iris&nbsp;\u95a2\u6570\u3092\u4f7f\u7528\u3059\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>&quot;&quot;&quot;\nprint(&quot;\uff0a\uff0a\uff0a\u8a73\u7d30\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\nprint(iris_datasets.DESCR)\nprint(&quot;\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a&quot;,flush=True)\n&quot;&quot;&quot;<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000 iris\u306e\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u306e\u5185\u5bb9\u3092\u51fa\u529b\u3059\u308b <br>\u3000\u3000\u3000\u3000\u3000\u203b\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8\uff08\uff03\uff09\u3092\u5916\u3059\u3068\u51fa\u529b\u3055\u308c\u308b<br>\u3000\u3000\u3000\u3000\u3000\uff0adir\u95a2\u6570\u3092\u4f7f\u3063\u3066 dir(iris_datasets) \u5185\u5bb9\u3092\u8868\u793a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd<br>\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u6982\u8981\u3092\u628a\u63e1\u3059\u308b\u306b\u306f\u3053\u3061\u3089\u304c\u4fbf\u5229<br>\u3000\u3000\u3000\uff15\uff10\u4ef6\u3065\u3064\uff13\u3064\u306e\u30af\u30e9\u30b9\u306b\u5206\u304b\u308c\u3066\u304a\u308a\u5168\u90e8\u3067\uff11\uff15\uff10\u4ef6<br>\u3000\u3000\u3000\uff14\u3064\u306e\u6570\u5024\u30c7\u30fc\u30bf\u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u308b<br><br>\u3000\u3000\u3000\u8a73\u7d30\u306e\u78ba\u8a8d\u3092\u3059\u308b<br>\u3000\u3000\u3000\u3000\u3000\u76ee\u7684\u5909\u6570\u3000target\u3000\u54c1\u7a2e\uff08\uff13\u7a2e\u985e\uff09<br>\u3000\u3000\u3000\u3000\u3000\u8aac\u660e\u5909\u6570\u3000data\u3000\u3000\u82b1\u3073\u3089\u306e\u5c5e\u6027\uff08\u9577\u3055\u3068\u5e45\uff09<br><br>\u3000\u3000\u3000\u3000\u3000\u8aac\u660e\u5909\u6570\u540d\u306f\u300cfeature_names\u300d\u306b\u7b26\u53f7\u5316\u3055\u308c\u5217\u540d\u3068\u3057\u3066\u5b58\u5728\u3059\u308b<br>\u3000\u3000\u3000\u3000\u3000\u3000\u3000setosa\u3001versicolor\u3001virginica<br><br>\u3000\u3000\u3000\u4ee5\u4e0b\u306fprint\u6587\u306b\u3088\u308bDESCR\uff08Data Set Characteristics\uff09\u306e\u51fa\u529b\u4f8b<br>\u3000\u3000\u3000\u3000\u3000DESCR\u306firis_datasets\u306e\u5c5e\u6027\u3001\u5024\u304cstr\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">python<code>1&gt;&gt;&gt; iris_datasets.__class__\n2&lt;class 'sklearn.utils.Bunch'&gt;<\/code><\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>\uff0a\uff0a\uff0a\u8a73\u7d30\uff0a\uff0a\uff0a\uff0a\uff0a\n.. _iris_dataset:\n\nIris plants dataset\n--------------------\n\n**Data Set Characteristics:**\n\n    :Number of Instances: 150 (50 in each of three classes)\n    :Number of Attributes: 4 numeric, predictive attributes and the class\n    :Attribute Information:\n        - sepal length in cm\n        - sepal width in cm\n        - petal length in cm\n        - petal width in cm\n        - class:\n                - Iris-Setosa\n                - Iris-Versicolour\n                - Iris-Virginica\n                \n    :Summary Statistics:\n\n    ============== ==== ==== ======= ===== ====================\n                    Min  Max   Mean    SD   Class Correlation\n    ============== ==== ==== ======= ===== ====================\n    sepal length:   4.3  7.9   5.84   0.83    0.7826\n    sepal width:    2.0  4.4   3.05   0.43   -0.4194\n    petal length:   1.0  6.9   3.76   1.76    0.9490  (high!)\n    petal width:    0.1  2.5   1.20   0.76    0.9565  (high!)\n    ============== ==== ==== ======= ===== ====================\n\n    :Missing Attribute Values: None\n    :Class Distribution: 33.3% for each of 3 classes.\n    :Creator: R.A. Fisher\n    :Donor: Michael Marshall (MARSHALL%PLU@io.arc.nasa.gov)\n    :Date: July, 1988\n\nThe famous Iris database, first used by Sir R.A. Fisher. The dataset is taken\nfrom Fisher&#39;s paper. Note that it&#39;s the same as in R, but not as in the UCI\nMachine Learning Repository, which has two wrong data points.\n\nThis is perhaps the best known database to be found in the\npattern recognition literature.  Fisher&#39;s paper is a classic in the field and\nis referenced frequently to this day.  (See Duda & Hart, for example.)  The\ndata set contains 3 classes of 50 instances each, where each class refers to a\ntype of iris plant.  One class is linearly separable from the other 2; the\nlatter are NOT linearly separable from each other.\n\n.. topic:: References\n\n   - Fisher, R.A. &quot;The use of multiple measurements in taxonomic problems&quot;\n     Annual Eugenics, 7, Part II, 179-188 (1936); also in &quot;Contributions to\n     Mathematical Statistics&quot; (John Wiley, NY, 1950).\n   - Duda, R.O., & Hart, P.E. (1973) Pattern Classification and Scene Analysis.\n     (Q327.D83) John Wiley & Sons.  ISBN 0-471-22361-1.  See page 218.\n   - Dasarathy, B.V. (1980) &quot;Nosing Around the Neighborhood: A New System\n     Structure and Classification Rule for Recognition in Partially Exposed\n     Environments&quot;.  IEEE Transactions on Pattern Analysis and Machine\n     Intelligence, Vol. PAMI-2, No. 1, 67-71.\n   - Gates, G.W. (1972) &quot;The Reduced Nearest Neighbor Rule&quot;.  IEEE Transactions\n     on Information Theory, May 1972, 431-433.\n   - See also: 1988 MLC Proceedings, 54-64.  Cheeseman et al&quot;s AUTOCLASS II\n     conceptual clustering system finds 3 classes in the data.\n   - Many, many more ...\n\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a<\/code><\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>\uff12\uff0e\u30c7\u30fc\u30bf\u306e\u78ba\u8a8d<\/strong><\/h4>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>#\niris = pd.DataFrame(iris_datasets.data,columns = iris_datasets.feature_names)\niris[&#39;target&#39;] = iris_datasets.target<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000Pandas\u306e\u300cDataFrame\u300d\u3092\u4f7f\u3063\u3066\u5217\u540d\u3092\u6c7a\u3081\u308b<br>\u3000\u3000\u3000\u7b2c\u4e00\u5f15\u6570\u30fb\u30fb\u30fb\u5143\u306b\u306a\u308b\u30c7\u30fc\u30bf<br>\u3000\u3000\u3000\u7b2c\u4e8c\u5f15\u6570\u30fb\u30fb\u30fb\u5143\u306b\u306a\u308b\u30c7\u30fc\u30bf\u304c\u6301\u3063\u3066\u3044\u308b\u5217\u540d\u3092\u6307\u5b9a\u3059\u308b<br><br>\u3000 \u300cDataFrame\u300d\u306b\u5217\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306b\u3001\u5217\u540d\u3068\u30c7\u30fc\u30bf\u3092\u6307\u5b9a\u3059\u308b<br>\u3000\u3000\u3000\uff15\u30ab\u30e9\u30e0\u76ee\u3068\u3057\u3066\u300ctarget\u300d\u3092\u8ffd\u52a0\u3059\u308b<br>\u3000\u3000\u3000\u3000\u3000\u203b\u5358\u306a\u308b\u6570\u5b57\u30c7\u30fc\u30bf\u304c\u5217\u540d\u3092\u4ed8\u3051\u305f\u914d\u5217\u30c7\u30fc\u30bf\u306b\u306a\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>#\nprint(iris.head())<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u5148\u982d\uff08head\uff09\u306e\uff15\u884c\u3092\u8868\u793a\u3059\u308b\u4f8b\u30fb\u30fb\u30fb\u884c\u6570\u306f\u6307\u5b9a\u53ef<br>\u3000\u3000\u3000print\u6587\u3092\u4f7f\u3063\u3066\u51fa\u529b\u3059\u308b<br>\u3000\u3000\u3000\u5148\u982d\u306e\uff15\u884c\u3001\uff15\u5217\u306e\u30c7\u30fc\u30bf\u304c\u51fa\u529b\u3055\u308c\u308b<br><br>\u3000\u4ee5\u4e0b\u306fprint\u6587\u306b\u3088\u308b\u51fa\u529b\u4f8b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>   sepal length (cm)  sepal width (cm)  ...  petal width (cm)  target\n0                5.1               3.5  ...               0.2       0\n1                4.9               3.0  ...               0.2       0\n2                4.7               3.2  ...               0.2       0\n3                4.6               3.1  ...               0.2       0\n4                5.0               3.6  ...               0.2       0\n\n[5 rows x 5 columns]<\/code><\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>3.\u305d\u306e\u4ed6<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u30c7\u30fc\u30bf\u306e\u5185\u5bb9\u3092\u8a73\u7d30\u306b\u78ba\u8a8d\u3059\u308b<br>\u3000\u3000\u3000 \u884c\u756a\u53f7\uff16\uff19\uff5e\uff19\uff17\u307e\u3067\u306e\u51e6\u7406\u3001\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8\u3092\u5916\u3059\u3068\u51fa\u529b\u3055\u308c\u308b<br>\u3000\u3000\u3000\u53c2\u7167\u3000<a href=\"https:\/\/yorozu.cloudfree.jp\/wordpress\/?p=2941\" target=\"_blank\" rel=\"noreferrer noopener\">\u30a2\u30e4\u30e1\u306e\u7a2e\u985e\u5224\u5225\uff08\u305d\u306e\uff14\uff09<\/a>\u3000\u3000<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30fb\u300c\u3042\u3084\u3081\u300d\u306e\u7a2e\u985e\u3092\u5224\u5225\u3059\u308b\u6a5f\u68b0\u5b66\u7fd2\u306b\u3064\u3044\u3066<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[54],"tags":[24],"class_list":["post-2918","post","type-post","status-publish","format-standard","hentry","category-99_","tag-24"],"_links":{"self":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/2918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2918"}],"version-history":[{"count":9,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/2918\/revisions"}],"predecessor-version":[{"id":4855,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/2918\/revisions\/4855"}],"wp:attachment":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}