

{"id":6096,"date":"2017-06-18T09:34:53","date_gmt":"2017-06-18T14:34:53","guid":{"rendered":"https:\/\/rud.is\/b\/?p=6096"},"modified":"2018-03-10T07:53:51","modified_gmt":"2018-03-10T12:53:51","slug":"r%e2%81%b6-disproving-approval","status":"publish","type":"post","link":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/","title":{"rendered":"R\u2076 \u2014 Disproving Approval"},"content":{"rendered":"<p>I couldn&#8217;t let this stand unchallenged:<\/p>\n<blockquote class=\"twitter-tweet\" data-lang=\"en\">\n<p lang=\"en\" dir=\"ltr\">The new Rasmussen Poll, one of the most accurate in the 2016 Election, just out with a Trump 50% Approval Rating.That&#39;s higher than O&#39;s #&#39;s!<\/p>\n<p>&mdash; Donald J. Trump (@realDonaldTrump) <a href=\"https:\/\/mobile.twitter.com\/realDonaldTrump\/status\/876394578777174021\">June 18, 2017<\/a><\/p><\/blockquote>\n<p><script async src=\"\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"><\/script><\/p>\n<p>Rasmussen makes their Presidential polling data <a href=\"http:\/\/m.rasmussenreports.com\/public_content\/politics\/trump_administration\/trump_approval_index_history\">available<\/a> for both ? &amp; O. Why not compare their ratings from day 1 in office (skipping days that Rasmussen doesn&#8217;t poll)?<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" data-attachment-id=\"6101\" data-permalink=\"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/plot_zoom-9\/\" data-orig-file=\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&amp;ssl=1\" data-orig-size=\"1984,1142\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Plot_Zoom\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=510%2C294&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?resize=510%2C294&#038;ssl=1\" alt=\"\" width=\"510\" height=\"294\" class=\"aligncenter size-full wp-image-6101\" \/><\/a><br \/>\n<pre id=\"approv-ramu-01\"><code class=\"language-r\">library(hrbrthemes)\r\nlibrary(rvest)\r\nlibrary(tidyverse)\r\n\r\nlist(\r\n  Obama=&quot;http:\/\/m.rasmussenreports.com\/public_content\/politics\/obama_administration\/obama_approval_index_history&quot;,\r\n  Trump=&quot;http:\/\/m.rasmussenreports.com\/public_content\/politics\/trump_administration\/trump_approval_index_history&quot;\r\n) %&gt;%\r\n  map_df(~{\r\n    read_html(.x) %&gt;%\r\n      html_table() %&gt;%\r\n      .[[1]] %&gt;%\r\n      tbl_df() %&gt;%\r\n      select(date=Date, approve=`Total Approve`, disapprove=`Total Disapprove`)\r\n  }, .id=&quot;who&quot;) -&gt; ratings\r\n\r\nmutate_at(ratings, c(&quot;approve&quot;, &quot;disapprove&quot;), function(x) as.numeric(gsub(&quot;%&quot;, &quot;&quot;, x, fixed=TRUE))\/100) %&gt;%\r\n  mutate(date = lubridate::dmy(date)) %&gt;%\r\n  filter(!is.na(approve)) %&gt;%\r\n  group_by(who) %&gt;%\r\n  arrange(date) %&gt;%\r\n  mutate(dnum = 1:n()) %&gt;%\r\n  ungroup() %&gt;%\r\n  ggplot(aes(dnum, approve, color=who)) +\r\n  geom_hline(yintercept = 0.5, size=0.5) +\r\n  geom_point(size=0.25) +\r\n  scale_y_percent(limits=c(0,1)) +\r\n  scale_color_manual(name=NULL, values=c(&quot;Obama&quot;=&quot;#313695&quot;, &quot;Trump&quot;=&quot;#a50026&quot;)) +\r\n  labs(x=&quot;Day in office&quot;, y=&quot;Approval Rating&quot;,\r\n       title=&quot;Presidential approval ratings from day 1 in office&quot;,\r\n       subtitle=&quot;For fairness, data was taken solely from Trump&#039;s favorite polling site (Rasmussen)&quot;,\r\n       caption=&quot;Data Source: &lt;rasmussenreports.com&gt;\\nCode: &lt;https:\/\/gist.github.com\/hrbrmstr\/a7310e1b64d0797401d01d0c6195bd8b&gt;&quot;) +\r\n  theme_ipsum_rc(grid=&quot;XY&quot;, base_size = 16) +\r\n  theme(legend.direction = &quot;horizontal&quot;) +\r\n  theme(legend.position=c(0.8, 1.05))<\/code><\/pre><\/p>\n<p>I&#8217;ll make a new post occasionally throughout ?&#8217;s term.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I couldn&#8217;t let this stand unchallenged: The new Rasmussen Poll, one of the most accurate in the 2016 Election, just out with a Trump 50% Approval Rating.That&#39;s higher than O&#39;s #&#39;s! &mdash; Donald J. Trump (@realDonaldTrump) June 18, 2017 Rasmussen makes their Presidential polling data available for both ? &amp; O. Why not compare their [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":6101,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":3,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"","footnotes":""},"categories":[91],"tags":[810],"class_list":["post-6096","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-r","tag-post"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>R\u2076 \u2014 Disproving Approval - rud.is<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rud.is\/b\/2017\/06\/18\/r\u2076-disproving-approval\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\u2076 \u2014 Disproving Approval - rud.is\" \/>\n<meta property=\"og:description\" content=\"I couldn&#8217;t let this stand unchallenged: The new Rasmussen Poll, one of the most accurate in the 2016 Election, just out with a Trump 50% Approval Rating.That&#039;s higher than O&#039;s #&#039;s! &mdash; Donald J. Trump (@realDonaldTrump) June 18, 2017 Rasmussen makes their Presidential polling data available for both ? &amp; O. Why not compare their [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rud.is\/b\/2017\/06\/18\/r\u2076-disproving-approval\/\" \/>\n<meta property=\"og:site_name\" content=\"rud.is\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-18T14:34:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-10T12:53:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1984\" \/>\n\t<meta property=\"og:image:height\" content=\"1142\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"hrbrmstr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"hrbrmstr\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/\"},\"author\":{\"name\":\"hrbrmstr\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"headline\":\"R\u2076 \u2014 Disproving Approval\",\"datePublished\":\"2017-06-18T14:34:53+00:00\",\"dateModified\":\"2018-03-10T12:53:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/\"},\"wordCount\":84,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"image\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/Plot_Zoom.png?fit=1984%2C1142&ssl=1\",\"keywords\":[\"post\"],\"articleSection\":[\"R\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/\",\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/\",\"name\":\"R\u2076 \u2014 Disproving Approval - rud.is\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/Plot_Zoom.png?fit=1984%2C1142&ssl=1\",\"datePublished\":\"2017-06-18T14:34:53+00:00\",\"dateModified\":\"2018-03-10T12:53:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/Plot_Zoom.png?fit=1984%2C1142&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/Plot_Zoom.png?fit=1984%2C1142&ssl=1\",\"width\":1984,\"height\":1142},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2017\\\/06\\\/18\\\/r%e2%81%b6-disproving-approval\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rud.is\\\/b\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\u2076 \u2014 Disproving Approval\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#website\",\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/\",\"name\":\"rud.is\",\"description\":\"&quot;In God we trust. All others must bring data&quot;\",\"publisher\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rud.is\\\/b\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\",\"name\":\"hrbrmstr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"width\":460,\"height\":460,\"caption\":\"hrbrmstr\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\"},\"description\":\"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7\",\"sameAs\":[\"http:\\\/\\\/rud.is\"],\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/author\\\/hrbrmstr\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"R\u2076 \u2014 Disproving Approval - rud.is","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:\/\/rud.is\/b\/2017\/06\/18\/r\u2076-disproving-approval\/","og_locale":"en_US","og_type":"article","og_title":"R\u2076 \u2014 Disproving Approval - rud.is","og_description":"I couldn&#8217;t let this stand unchallenged: The new Rasmussen Poll, one of the most accurate in the 2016 Election, just out with a Trump 50% Approval Rating.That&#39;s higher than O&#39;s #&#39;s! &mdash; Donald J. Trump (@realDonaldTrump) June 18, 2017 Rasmussen makes their Presidential polling data available for both ? &amp; O. Why not compare their [&hellip;]","og_url":"https:\/\/rud.is\/b\/2017\/06\/18\/r\u2076-disproving-approval\/","og_site_name":"rud.is","article_published_time":"2017-06-18T14:34:53+00:00","article_modified_time":"2018-03-10T12:53:51+00:00","og_image":[{"width":1984,"height":1142,"url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","type":"image\/png"}],"author":"hrbrmstr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"hrbrmstr"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#article","isPartOf":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/"},"author":{"name":"hrbrmstr","@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"headline":"R\u2076 \u2014 Disproving Approval","datePublished":"2017-06-18T14:34:53+00:00","dateModified":"2018-03-10T12:53:51+00:00","mainEntityOfPage":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/"},"wordCount":84,"commentCount":11,"publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"image":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","keywords":["post"],"articleSection":["R"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/","url":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/","name":"R\u2076 \u2014 Disproving Approval - rud.is","isPartOf":{"@id":"https:\/\/rud.is\/b\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#primaryimage"},"image":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","datePublished":"2017-06-18T14:34:53+00:00","dateModified":"2018-03-10T12:53:51+00:00","breadcrumb":{"@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#primaryimage","url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","contentUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","width":1984,"height":1142},{"@type":"BreadcrumbList","@id":"https:\/\/rud.is\/b\/2017\/06\/18\/r%e2%81%b6-disproving-approval\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rud.is\/b\/"},{"@type":"ListItem","position":2,"name":"R\u2076 \u2014 Disproving Approval"}]},{"@type":"WebSite","@id":"https:\/\/rud.is\/b\/#website","url":"https:\/\/rud.is\/b\/","name":"rud.is","description":"&quot;In God we trust. All others must bring data&quot;","publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rud.is\/b\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886","name":"hrbrmstr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","contentUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","width":460,"height":460,"caption":"hrbrmstr"},"logo":{"@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1"},"description":"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7","sameAs":["http:\/\/rud.is"],"url":"https:\/\/rud.is\/b\/author\/hrbrmstr\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/06\/Plot_Zoom.png?fit=1984%2C1142&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/p23idr-1Ak","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":7556,"url":"https:\/\/rud.is\/b\/2017\/12\/14\/inter-operate-with-mqtt-message-brokers-with-r-a-k-a-live-bbc-subtitles\/","url_meta":{"origin":6096,"position":0},"title":"Inter-operate with &#8216;MQTT&#8217; Message Brokers With R (a.k.a. Live! BBC! Subtitles!)","author":"hrbrmstr","date":"2017-12-14","format":false,"excerpt":"Most of us see the internet through the lens of browsers and apps on our laptops, desktops, watches, TVs and mobile devices. These displays are showing us --- for the most part --- content designed for human consumption. Sure, apps handle API interactions, but even most of that communication happens\u2026","rel":"","context":"In &quot;mqtt&quot;","block_context":{"text":"mqtt","link":"https:\/\/rud.is\/b\/category\/mqtt\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/12\/mqttmap-1.png?fit=1200%2C536&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/12\/mqttmap-1.png?fit=1200%2C536&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/12\/mqttmap-1.png?fit=1200%2C536&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/12\/mqttmap-1.png?fit=1200%2C536&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2017\/12\/mqttmap-1.png?fit=1200%2C536&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":13481,"url":"https:\/\/rud.is\/b\/2022\/06\/20\/saying-the-quiet-part-out-loud-on-juneteenth\/","url_meta":{"origin":6096,"position":1},"title":"Saying The Quiet Part Out Loud On Juneteenth","author":"hrbrmstr","date":"2022-06-20","format":false,"excerpt":"I realize you have to be living under a rock in the U.S. to not know that yesterday, was Juneteenth (a portmanteau of \"June Nineteenth\"). Still, I feel compelled to explain that said date marks the day when federal troops arrived in Galveston, Texas in 1865 to take control of\u2026","rel":"","context":"In &quot;Commentary&quot;","block_context":{"text":"Commentary","link":"https:\/\/rud.is\/b\/category\/commentary\/"},"img":{"alt_text":"person's right fist grayscale photography","src":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2022\/06\/oladimeji-odunsi-e-TuK4z2LhY-unsplash.jpg?fit=640%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2022\/06\/oladimeji-odunsi-e-TuK4z2LhY-unsplash.jpg?fit=640%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2022\/06\/oladimeji-odunsi-e-TuK4z2LhY-unsplash.jpg?fit=640%2C800&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":4674,"url":"https:\/\/rud.is\/b\/2016\/11\/22\/the-devil-is-in-the-details\/","url_meta":{"origin":6096,"position":2},"title":"The Devil is in the Details","author":"hrbrmstr","date":"2016-11-22","format":false,"excerpt":"The [first public informational video](https:\/\/www.greatagain.gov\/news\/message-president-elect-donald-j-trump.html) from the PEOTUS didn't add a full transcript of the video to the web site and did not provide (at least as of 0700 EST on 2016-11-22) their own text annotations\/captions to the video. Google's (YouTube's) auto-captioning (for the most part) worked and it's most\u2026","rel":"","context":"In &quot;Commentary&quot;","block_context":{"text":"Commentary","link":"https:\/\/rud.is\/b\/category\/commentary\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12830,"url":"https:\/\/rud.is\/b\/2020\/11\/08\/its-almost-over-much-damage-has-been-done-but-i-we-have-a-call-to-unexpected-action\/","url_meta":{"origin":6096,"position":3},"title":"It&#8217;s [Almost] Over; Much Damage Has Been Done; But I [We] Have A Call To Unexpected Action","author":"hrbrmstr","date":"2020-11-08","format":false,"excerpt":"NOTE: There's a unique feed URL for R\/tech stuff \u2014 https:\/\/rud.is\/b\/category\/r\/feed\/. If you hit the generic \"subscribe\" button b\/c the vast majority of posts have been on that, this isn't one of those posts and you should probably delete it and move on with more important things than the rantings\u2026","rel":"","context":"In &quot;Commentary&quot;","block_context":{"text":"Commentary","link":"https:\/\/rud.is\/b\/category\/commentary\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12383,"url":"https:\/\/rud.is\/b\/2019\/06\/28\/quick-hit-dig-ging-into-dns-records-with-processx\/","url_meta":{"origin":6096,"position":4},"title":"Quick hit: &#8216;dig&#8217;-ging Into r-project.org DNS Records with {processx}","author":"hrbrmstr","date":"2019-06-28","format":false,"excerpt":"The r-project.org domain had some temporary technical difficulties this week (2019-29) that made reaching R-related resources problematic for a bunch of folks for a period of time. Incidents like this underscore the need for regional and network diversity when it comes to ensuring the availability of DNS services. That is,\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12586,"url":"https:\/\/rud.is\/b\/2020\/01\/01\/writing-frictionless-r-package-wrappers-introduction\/","url_meta":{"origin":6096,"position":5},"title":"Writing Frictionless R Package Wrappers \u2014 Introduction","author":"hrbrmstr","date":"2020-01-01","format":false,"excerpt":"The R language and RStudio IDE are a powerful combination for \"getting stuff done\", and one aspect of R itself that makes it especially useful is the ability to use it with other programming languages via a robust foreign language interface capability1. The term \"foreign language\" refers to another programming\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/6096","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/comments?post=6096"}],"version-history":[{"count":0,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/6096\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/media\/6101"}],"wp:attachment":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/media?parent=6096"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/categories?post=6096"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/tags?post=6096"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}