{"id":476,"date":"2023-07-29T18:53:48","date_gmt":"2023-07-29T18:53:48","guid":{"rendered":"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/"},"modified":"2023-07-29T18:53:48","modified_gmt":"2023-07-29T18:53:48","slug":"%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/","title":{"rendered":"\ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0 \ub300\ud574 r\uc5d0\uc11c jitter \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0 \ub300\ud574 R\uc5d0\uc11c <strong>\uc9c0\ud130<\/strong> \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub294 \uc2dc\uae30\uc640 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc9c0\ud130\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><strong>\uc0b0\uc810\ub3c4\ub294<\/strong> \ub450 \uc5f0\uc18d \ubcc0\uc218 \uac04\uc758 \uad00\uacc4\ub97c \uc2dc\uac01\ud654\ud558\ub294 \ub370 \ud0c1\uc6d4\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \uc0b0\uc810\ub3c4\ub294 \uc6b4\ub3d9\uc120\uc218 100\uba85\uc758 \ud0a4\uc640 \ubab8\ubb34\uac8c \uc0ac\uc774\uc758 \uad00\uacc4\ub97c \uc2dc\uac01\ud654\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define vectors of heights and weights\n<\/span>weights &lt;- runif(100, 160, 240) \nheights &lt;- (weights\/3) + rnorm(100)\n\n<span style=\"color: #008080;\">#create data frame of heights and weights\n<\/span>data &lt;- as.data.frame(cbind(weights, heights))\n\n<span style=\"color: #008080;\">#view first six rows of data frame\n<\/span>head(data)\n\n# weights heights\n#1 170.8859 57.20745\n#2 183.2481 62.01162\n#3 235.6884 77.93126\n#4 231.9864 77.12520\n#5 200.8562 67.93486\n#6 169.6987 57.54977\n<span style=\"color: #008080;\">#create scatterplot of heights vs weights\n<\/span>plot(data$weights, data$heights, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\ub098 \ub54c\ub85c\ub294 \uc5f0\uc18d\ud615 \ubcc0\uc218\uc640 <em>\uac70\uc758<\/em> \uc5f0\uc18d\ud615\uc778 \ub2e4\ub978 \ubcc0\uc218 \uc0ac\uc774\uc758 \uad00\uacc4\ub97c \uc2dc\uac01\ud654\ud558\uace0 \uc2f6\uc744 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, \ub18d\uad6c \uc120\uc218\uac00 \uc2dc\uc98c\uc758 \ucc98\uc74c 10\uacbd\uae30 \ub3d9\uc548 \uc2dc\uc791\ud55c \uacbd\uae30 \uc218\uc640 \uacbd\uae30\ub2f9 \ud3c9\uade0 \uc810\uc218\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ub2e4\uc74c \ub370\uc774\ud130 \uc138\ud2b8\uac00 \uc788\ub2e4\uace0 \uac00\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame<\/span>\ngames_started &lt;- sample(1:10, 300, TRUE)\npoints_per_game &lt;- 3*games_started + rnorm(300)\ndata &lt;- as.data.frame(cbind(games_started, points_per_game))\n\n<span style=\"color: #008080;\">#view first six rows of data frame\n<\/span>head(data)\n\n# games_started points_per_game\n#1 9 25.831554\n#2 9 26.673983\n#3 10 29.850948\n#4 4 12.024353\n#5 4 11.534192\n#6 1 4.383127<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><em>\uac8c\uc784\ub2f9 \uc810\uc218<\/em> \ub294 \uc5f0\uc18d\ud615 \ubcc0\uc218\uc774\uc9c0\ub9cc <em>\uc2dc\uc791\ub41c \uac8c\uc784\uc740<\/em> \uc774\uc0b0\ud615 \ubcc0\uc218\uc785\ub2c8\ub2e4. \uc774 \ub450 \ubcc0\uc218\uc758 \uc0b0\uc810\ub3c4\ub97c \ub9cc\ub4e4\ub824\uace0 \ud558\uba74 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create scatterplot of games started vs average points per game\n<\/span>plot(data$games_started, data$points_per_game, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \uc0b0\uc810\ub3c4\uc5d0\uc11c \uc6b0\ub9ac\ub294 <em>\uc2dc\uc791\ub41c \uac8c\uc784<\/em> \uacfc <em>\uac8c\uc784\ub2f9 \ud3c9\uade0 \uc810\uc218\uac00<\/em> \uc591\uc758 \uad00\uacc4\ub97c \uac00\uc9c0\uace0 \uc788\ub2e4\uace0 \ub9d0\ud560 \uc218 \uc788\uc9c0\ub9cc, \ub9ce\uc740 \ubd80\ubd84\uc774 \uacb9\uce58\uae30 \ub54c\ubb38\uc5d0 \ud50c\ub86f\uc758 \uac1c\ubcc4 \uc810\uc218\ub97c \ud655\uc778\ud558\uae30\uac00 \uc57d\uac04 \uc5b4\ub835\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Jitter<\/strong> \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uba74 <em>\ub358\uc838\uc9c4 X\ucd95 \ubcc0\uc218 \uc138\ud2b8<\/em> \uc5d0 \uc57d\uac04\uc758 &#8220;\ub178\uc774\uc988&#8221;\ub97c \ucd94\uac00\ud558\uc5ec \ud50c\ub86f\uc758 \uac1c\ubcc4 \uc9c0\uc810\uc744 \ub354 \uba85\ud655\ud558\uac8c \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#add jitter to <em>games started\n<\/em><\/span>plot( <span style=\"color: #800080;\">jitter<\/span> (data$games_started), data$points_per_game, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc120\ud0dd\uc801\uc73c\ub85c \uc9c0\ud130\uc5d0 \uc22b\uc790 \uc778\uc218\ub97c \ucd94\uac00\ud558\uc5ec \ub370\uc774\ud130\uc5d0 \ub354 \ub9ce\uc740 \ub178\uc774\uc988\ub97c \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#add jitter to <em>games started\n<\/em><\/span>plot( <span style=\"color: #800080;\">jitter<\/span> (data$games_started, <span style=\"color: #800080;\">2<\/span> ), data$points_per_game, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\ub098 \ub108\ubb34 \ub9ce\uc740 \uc9c0\ud130\ub97c \ucd94\uac00\ud558\uc9c0 \uc54a\ub3c4\ub85d \uc8fc\uc758\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\uba74 \uc6d0\ubcf8 \ub370\uc774\ud130\uac00 \ub108\ubb34 \ub9ce\uc774 \uc65c\uace1\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>plot( <span style=\"color: #800080;\">jitter<\/span> (data$games_started, <span style=\"color: #800080;\">20<\/span> ), data$points_per_game, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\uc9c0\ud130\ub9c1\uc740 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ub354 \ub098\uc740 \ubcf4\uae30\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ubd88\uc548\uc815\uc131\uc740 \uc774\uc0b0\ubcc0\uc218\uc758 \uc218\uc900 \uc911 \ud558\ub098\uac00 \ub2e4\ub978 \uc218\uc900\ubcf4\ub2e4 \ub354 \ub9ce\uc740 \uac12\uc744 \uac00\uc9c8 \ub54c \ud2b9\ud788 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \ub370\uc774\ud130 \uc138\ud2b8\uc5d0\ub294 \uc2dc\uc98c\uc758 \uccab 5\uacbd\uae30 \uc911 2\uacbd\uae30\ub97c \uc2dc\uc791\ud55c \ub18d\uad6c \uc120\uc218\uac00 300\uba85\uc774 \uc788\uc9c0\ub9cc 1, 3, 4 \ub610\ub294 5\uacbd\uae30\ub97c \uc2dc\uc791\ud55c \uc120\uc218\ub294 \uc57d 100\uba85\ubfd0\uc785\ub2c8\ub2e4.<br \/><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>games_started &lt;- sample(1:5, 100, TRUE)\npoints_per_game &lt;- 3*games_started + rnorm(100)\ndata &lt;- as.data.frame(cbind(games_started, points_per_game))\n\ngames_twos &lt;- rep(2, 200)\npoints_twos &lt;- 3*games_twos + rnorm(200)\ndata_twos &lt;- as.data.frame(cbind(games_twos, points_twos))\nnames(data_twos) &lt;- c('games_started', 'points_per_game')\n\nall_data &lt;- rbind(data, data_twos)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uac8c\uc784\ub2f9 \ud3c9\uade0 \uc810\uc218\ub97c \uae30\uc900\uc73c\ub85c \ud50c\ub808\uc774\ud55c \uac8c\uc784 \uc218\ub97c \uc2dc\uac01\ud654\ud558\uba74 2\uac8c\uc784\uc744 \ud50c\ub808\uc774\ud55c \ud50c\ub808\uc774\uc5b4\uac00 \ub354 \ub9ce\ub2e4\uace0 \ub9d0\ud560 \uc218 \uc788\uc9c0\ub9cc 2\uac8c\uc784\uc744 \ud50c\ub808\uc774\ud55c <em>\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uac00 \uc815\ud655\ud788 \uba87 \uba85\uc778\uc9c0<\/em> \ub9d0\ud558\uae30\ub294 \uc5b4\ub835\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>plot(all_data$games_started, all_data$points_per_game, pch = 16, col = 'steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\ub098 <em>\uac8c\uc784 \uc2dc\uc791<\/em> \ubcc0\uc218\uc5d0 \uc9c0\ud130\ub97c \ucd94\uac00\ud558\uba74 2\uac1c\uc758 \uac8c\uc784\uc744 \uc2dc\uc791\ud55c \ucd94\uac00 \ud50c\ub808\uc774\uc5b4 \uc218\ub97c \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>plot( <span style=\"color: #800080;\">jitter<\/span> (all_data$games_started), all_data$points_per_game,\n     pch=16, col='steelblue')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc9c0\ud130\uc758 \uc591\uc744 \uc57d\uac04 \ub298\ub9ac\uba74 \uc774 \ucc28\uc774\uac00 \ub354\uc6b1 \ub4dc\ub7ec\ub0a9\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>plot( <span style=\"color: #800080;\">jitter<\/span> (all_data$games_started, <span style=\"color: #800080;\">1.5<\/span> ), all_data$points_per_game,\n     pch=16, col='steelblue')<\/strong><\/pre>\n<h3>\n<p> <span style=\"color: #000000;\"><strong>\uc2dc\uac01\ud654 \uc804\uc6a9 \uc9c0\ud130<\/strong><\/span><\/p>\n<\/h3>\n<p> <span style=\"color: #000000;\">\uc55e\uc11c \uc5b8\uae09\ud588\ub4ef\uc774 \uc9c0\ud130\ub9c1\uc740 \ub370\uc774\ud130\uc5d0 \ubb34\uc791\uc704 \ub178\uc774\uc988\ub97c \ucd94\uac00\ud558\ubbc0\ub85c \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0\uc11c \ub370\uc774\ud130\ub97c \uc2dc\uac01\ud654\ud558\ub824\ub294 \uacbd\uc6b0 \uc720\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uba74 \ub370\uc774\ud130 \uc138\ud2b8\uc5d0 \uc788\ub294 \ub450 \ubcc0\uc218 \uac04\uc758 \uc2e4\uc81c \uae30\ubcf8 \uad00\uacc4\ub97c \ub354 \uc798 \uc774\ud574\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\ub098 \ud68c\uadc0\uc640 \uac19\uc740 \ud1b5\uacc4 \ubd84\uc11d\uc744 \uc0ac\uc6a9\ud560 \ub54c \ub370\uc774\ud130 \uc138\ud2b8\uc758 \ubcc0\uc218\uc5d0 \ubb34\uc791\uc704 \ub178\uc774\uc988\ub97c \ucd94\uac00\ud558\ub294 \uac83\uc740 \ubd84\uc11d \uacb0\uacfc\uc5d0 \uc601\ud5a5\uc744 \ubbf8\uce60 \uc218 \uc788\uc73c\ubbc0\ub85c \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub530\ub77c\uc11c \uc9c0\ud130\ub294 \ub370\uc774\ud130 \ubd84\uc11d\uc774 \uc544\ub2cc \ub370\uc774\ud130 \uc2dc\uac01\ud654\uc5d0\ub9cc \uc0ac\uc6a9\ud558\ub3c4\ub85d \uace0\uc548\ub418\uc5c8\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0 \ub300\ud574 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub294 \uc2dc\uae30\uc640 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc9c0\ud130\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \uc0b0\uc810\ub3c4\ub294 \ub450 \uc5f0\uc18d \ubcc0\uc218 \uac04\uc758 \uad00\uacc4\ub97c \uc2dc\uac01\ud654\ud558\ub294 \ub370 \ud0c1\uc6d4\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \uc0b0\uc810\ub3c4\ub294 \uc6b4\ub3d9\uc120\uc218 100\uba85\uc758 \ud0a4\uc640 \ubab8\ubb34\uac8c \uc0ac\uc774\uc758 \uad00\uacc4\ub97c \uc2dc\uac01\ud654\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4. #define vectors of heights and weights weights &lt;- runif(100, 160, 240) heights &lt;- (weights\/3) + rnorm(100) [&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-476","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>\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \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\/\u110c\u1175\u1110\u1165-\u1112\u1161\u11b7\u1109\u116e-r\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/\u110c\u1175\u1110\u1165-\u1112\u1161\u11b7\u1109\u116e-r\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T18:53:48+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\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/\",\"url\":\"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/\",\"name\":\"\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T18:53:48+00:00\",\"dateModified\":\"2023-07-29T18:53:48+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0 \ub300\ud574 r\uc5d0\uc11c jitter \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\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":"\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \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\/\u110c\u1175\u1110\u1165-\u1112\u1161\u11b7\u1109\u116e-r\/","og_locale":"ko_KR","og_type":"article","og_title":"\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/\u110c\u1175\u1110\u1165-\u1112\u1161\u11b7\u1109\u116e-r\/","og_site_name":"Statorials","article_published_time":"2023-07-29T18:53:48+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\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/","url":"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/","name":"\uc0b0\uc810\ub3c4\ub97c \uc704\ud574 R\uc5d0\uc11c Jitter \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T18:53:48+00:00","dateModified":"2023-07-29T18:53:48+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uc9c0\ud130 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub354 \uc27d\uace0 \uc77d\uae30 \ud3b8\ub9ac\ud55c \uc0b0\uc810\ub3c4\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/%e1%84%8c%e1%85%b5%e1%84%90%e1%85%a5-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-r\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"\ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc\uc5d0 \ub300\ud574 r\uc5d0\uc11c jitter \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\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\/476","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=476"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/476\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}