{"id":953,"date":"2023-07-28T04:57:15","date_gmt":"2023-07-28T04:57:15","guid":{"rendered":"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/"},"modified":"2023-07-28T04:57:15","modified_gmt":"2023-07-28T04:57:15","slug":"grep-%e1%84%83%e1%85%a2-grep-r","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/","title":{"rendered":"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc0ac\ub78c\ub4e4\uc774 R\uc5d0\uc11c \uc790\uc8fc \ud63c\ub3d9\ud558\ub294 \ub450 \uac00\uc9c0 \uae30\ub2a5\uc740 <strong>grep()<\/strong> \ubc0f <strong>grepl()<\/strong> \uc785\ub2c8\ub2e4. \ub450 \ud568\uc218 \ubaa8\ub450 \ubb38\uc790\uc5f4\uc5d0 \ud2b9\uc815 \ud328\ud134\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud560 \uc218 \uc788\uc9c0\ub9cc \uc11c\ub85c \ub2e4\ub978 \uacb0\uacfc\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>grepl()\uc740<\/strong> \ubb38\uc790\uc5f4\uc5d0 \ud328\ud134\uc774 \uc788\uc73c\uba74 TRUE\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>grep()\uc740<\/strong> \ud328\ud134\uc744 \ud3ec\ud568\ud558\ub294 \ubb38\uc790\uc5f4 \uc778\ub371\uc2a4\uc758 \ubca1\ud130\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ucc28\uc774\uc810\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create a vector of data<\/span>\ndata &lt;- c('P Guard', 'S Guard', 'S Forward', 'P Forward', 'Center')\n\n<span style=\"color: #3366ff;\">grep<\/span> ('Guard', data)\n[1] 1 2\n\n<span style=\"color: #3366ff;\">grepl<\/span> ('Guard', data) \n[1] TRUE TRUE FALSE FALSE FALSE<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \uae30\ub2a5 \uc911 \ud558\ub098\ub97c \ub2e4\ub978 \uae30\ub2a5\ubcf4\ub2e4 \uba3c\uc800 \uc0ac\uc6a9\ud558\ub824\ub294 \uacbd\uc6b0\ub97c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>grepl()\uc744 \uc0ac\uc6a9\ud558\ub294 \uacbd\uc6b0<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><strong>1. \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \ud589 \ud544\ud130\ub9c1<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>grepl()<\/strong> \uc758 \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \uc6a9\ub3c4 \uc911 \ud558\ub098\ub294 \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \ud589\uc744 \ud544\ud130\ub9c1\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\">library(dplyr)<\/span>\n\n#create data frame<\/span>\ndf &lt;- data.frame(player = c('P Guard', 'S Guard', 'S Forward', 'P Forward', 'Center'),\n                 points = c(12, 15, 19, 22, 32),\n                 rebounds = c(5, 7, 7, 12, 11))\n\n<span style=\"color: #008080;\">#filter rows that contain the string 'Guard' in the player column\n<\/span><span style=\"color: #000000;\">df %&gt;% filter( <span style=\"color: #3366ff;\">grepl<\/span> ('Guard', player))\n\n   player points rebounds\n1 P Guard 12 5\n2 S Guard 15 7<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\uad00\ub828 \ud56d\ubaa9:<\/strong> <a href=\"https:\/\/statorials.org\/ko\/dplyr-\u1106\u116e\u11ab\u110c\u1161\u110b\u1167\u11af\u110b\u1173\u11af-\u1111\u1169\u1112\u1161\u11b7\u1112\u1161\u1102\u1173\u11ab-\u1111\u1175\u11af\u1110\u1165-\u1105\u1161\u110b\u1175\u11ab\/\">dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \ud589\uc744 \ud544\ud130\ub9c1\ud558\ub294 \ubc29\ubc95<\/a><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>grep()\uc744 \uc0ac\uc6a9\ud558\ub294 \uacbd\uc6b0<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><strong>1. \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \uc5f4\uc744 \uc120\ud0dd\ud569\ub2c8\ub2e4.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>grep()\uc744<\/strong> \uc0ac\uc6a9\ud558\uc5ec \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \uc5f4\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\">library(dplyr)<\/span>\n\n#create data frame<\/span>\ndf &lt;- data.frame(player = c('P Guard', 'S Guard', 'S Forward', 'P Forward', 'Center'),\n                 points = c(12, 15, 19, 22, 32),\n                 rebounds = c(5, 7, 7, 12, 11))\n\n<span style=\"color: #008080;\">#select columns that contain the string 'p' in their name\n<\/span><span style=\"color: #000000;\">df %&gt;% select( <span style=\"color: #3366ff;\">grep<\/span> ('p', colnames(df)))\n\n     player points\n1 P Guard 12\n2 S Guard 15\n3S Forward 19\n4P Forward 22\n5 Center 32<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>2. \ud2b9\uc815 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub41c \uc904 \uc218 \uacc4\uc0b0<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>grep()\uc744<\/strong> \uc0ac\uc6a9\ud558\uc5ec \ud2b9\uc815 \ubb38\uc790\uc5f4\uc744 \ud3ec\ud568\ud558\ub294 \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \uc904 \uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame<\/span>\ndf &lt;- data.frame(player = c('P Guard', 'S Guard', 'S Forward', 'P Forward', 'Center'),\n                 points = c(12, 15, 19, 22, 32),\n                 rebounds = c(5, 7, 7, 12, 11))\n\n<span style=\"color: #008080;\">#count how many rows contain the string 'Guard' in the player column\n<\/span><span style=\"color: #000000;\">length( <span style=\"color: #3366ff;\">grep<\/span> ('Guard', df$player))\n\n[1] 2<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><em><a href=\"https:\/\/statorials.org\/ko\/\u1110\u1169\u11bc\u1100\u1168\u1112\u1161\u11a8\u110b\u1173\u11ab-\u1100\u1161\u11ab\u1103\u1161\u11ab\u1112\u1161\u1100\u1169-\u110c\u1175\u11a8\u110c\u1165\u11b8\u110c\u1165\u11a8\u110b\u1175\u11ab-\u1107\u1161\u11bc\u1107\u1165\u11b8\u110b\u1173\u1105\u1169-\u1100\u1162\u1102\u1167\u11b7\u110b\u1173\u11af-\u1109\u1165\u11af\u1106\u1167\u11bc\u1112\u1161\u1106\u1173\u1105\u1169-\u1110\u1169\u11bc\u1100\u1168\u1105\u1173\u11af-\u1103\u1165-\u1109\u1171\u11b8\u1100\u1166-\u1107\u1162\u110b\u116e\u11af-\u1109\u116e-\u110b\u1175\u11bb\u1109\u1173\u11b8\u1102\u1175\u1103\u1161.\/\" target=\"_blank\" rel=\"noopener noreferrer\">\uc5ec\uae30\uc5d0\uc11c<\/a> \ub354 \ub9ce\uc740 R \ud29c\ud1a0\ub9ac\uc5bc\uc744 \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc0ac\ub78c\ub4e4\uc774 R\uc5d0\uc11c \uc790\uc8fc \ud63c\ub3d9\ud558\ub294 \ub450 \uac00\uc9c0 \uae30\ub2a5\uc740 grep() \ubc0f grepl() \uc785\ub2c8\ub2e4. \ub450 \ud568\uc218 \ubaa8\ub450 \ubb38\uc790\uc5f4\uc5d0 \ud2b9\uc815 \ud328\ud134\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud560 \uc218 \uc788\uc9c0\ub9cc \uc11c\ub85c \ub2e4\ub978 \uacb0\uacfc\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. grepl()\uc740 \ubb38\uc790\uc5f4\uc5d0 \ud328\ud134\uc774 \uc788\uc73c\uba74 TRUE\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. grep()\uc740 \ud328\ud134\uc744 \ud3ec\ud568\ud558\ub294 \ubb38\uc790\uc5f4 \uc778\ub371\uc2a4\uc758 \ubca1\ud130\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ucc28\uc774\uc810\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. #create a vector of data data &lt;- c(&#8216;P Guard&#8217;, &#8216;S Guard&#8217;, &#8216;S [&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-953","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>R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?<\/title>\n<meta name=\"description\" content=\"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\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\/grep-\u1103\u1162-grep-r\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?\" \/>\n<meta property=\"og:description\" content=\"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/grep-\u1103\u1162-grep-r\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T04:57:15+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\/grep-%e1%84%83%e1%85%a2-grep-r\/\",\"url\":\"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/\",\"name\":\"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-28T04:57:15+00:00\",\"dateModified\":\"2023-07-28T04:57:15+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?\"}]},{\"@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":"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?","description":"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\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\/grep-\u1103\u1162-grep-r\/","og_locale":"ko_KR","og_type":"article","og_title":"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?","og_description":"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/grep-\u1103\u1162-grep-r\/","og_site_name":"Statorials","article_published_time":"2023-07-28T04:57:15+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\/grep-%e1%84%83%e1%85%a2-grep-r\/","url":"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/","name":"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-28T04:57:15+00:00","dateModified":"2023-07-28T04:57:15+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"R\uc758 grep()\uacfc grepl() \ud568\uc218\uc758 \ucc28\uc774\uc810\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/grep-%e1%84%83%e1%85%a2-grep-r\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"R\uc758 grep()\uacfc grepl() \ube44\uad50: \ucc28\uc774\uc810\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?"}]},{"@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\/953","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=953"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/953\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=953"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=953"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=953"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}