{"id":628,"date":"2012-10-18T13:40:19","date_gmt":"2012-10-18T13:40:19","guid":{"rendered":"http:\/\/garysieling.com\/blog\/?p=628"},"modified":"2012-10-18T13:40:19","modified_gmt":"2012-10-18T13:40:19","slug":"building-a-statistical-significance-testing-web-service-powered-by-r","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/","title":{"rendered":"Building a statistical significance testing web service powered by R"},"content":{"rendered":"<p><a href=\"http:\/\/www.r-project.org\/\">R<\/a> is a programming language focused on solving statistical and mathematical calculations. R programs often operate on <a href=\"http:\/\/garysieling.com\/blog\/marking-time-in-r\">large<\/a>, <a href=\"http:\/\/garysieling.com\/blog\/onset-detection-with-r\">in-memory<\/a> <a href=\"http:\/\/garysieling.com\/blog\/detecting-pitches-in-music-with-r\">data sets<\/a>, which feels somewhat similar to database programming. Examples in the <a href=\"http:\/\/garysieling.com\/blog\/book-review-r-cookbook\">R Cookbook<\/a> bear a resemblence to functional programming in clojure, <a href=\"http:\/\/www.bioinformaticszen.com\/post\/simple-functional-programming-in-r\/\">as others have noted<\/a>.<\/p>\n<p>I&#8217;ve been exploring the language to gain insight into related, but disparate technologies that I use with regularity (e.g. Postgres), but for this to be really useful, I&#8217;d like to see R behind a webservice. Looking through the official website, there are many defunct attempts at using R in this manner, often abandoned once the maintainer finishes their masters.<\/p>\n<p>A couple have survived, notably <a href=\"http:\/\/cran.r-project.org\/web\/packages\/Rook\/index.html\">Rook<\/a> and <a href=\"http:\/\/biostat.mc.vanderbilt.edu\/rapache\/\">rApache<\/a>. Rook is a web server inside of R, and rApache, as you might guess, is an Apache module that calls R. I&#8217;ve chosen rApache, as I&#8217;d like to have a battle-tested front-end for this &#8211; while R seems to have very committed maintainers, there do not seem to be very many of them, and I have yet to find examples of anyone running this as a production application.<\/p>\n<p>Inspired by WolframAlpha&#8217;s APIs, I built a small web service to test statistical significance. In the future I intend to do tests on performance and security, as well as available JSON libraries.<\/p>\n<p>Here is the installation procedure:<\/p>\n<pre>apt-get upgrade\napt-get update\napt-get install r-base r-base-dev \napt-get install apache2-mpm-prefork apache2-prefork-dev \napt-get install git-core\ngit clone https:\/\/github.com\/jeffreyhorner\/rapache.git\ncd rapache\n.\/configure\nmake\nmake test\nmake install\nvi \/etc\/apache2\/httpd.conf<\/pre>\n<p>Apache configuration settings:<\/p>\n<pre lang=\"xml\">\n\nLoadModule R_module \/usr\/lib\/apache2\/modules\/mod_R.so\n\n<Location \/RApacheInfo>\nSetHandler r-info\n<\/Location>\n\nROutputErrors\n\n<Directory \/var\/www\/R>\n        SetHandler r-script\n        RHandler sys.source\n<\/Directory>\n\n<\/pre>\n<pre>\/etc\/init.d\/apache2 restart<\/pre>\n<p>And these are the contents of ws.R:<\/p>\n<pre lang=\"R\">\n\nsetContentType(\"application\/json\")\n\nzscore<-function(p, pc, N, Nc){ (p-pc) \n     \/ sqrt(p * (1-p) \/ N + pc * (1-pc) \/ Nc) }\nsignificant<-function(p, pc, N, Nc){ \n     zscore(p, pc, N, Nc) > 1.65 }\n\nvalid<-function(x){ nchar(x) < 10 }\n\nif (!valid(GET$pc) \n || !valid(GET$p) \n || !valid(GET$N) \n || !valid(GET$Nc)) {\n  cat('error:arg length')\n} else {\ncat(significant(as.numeric(GET$p), \n                as.numeric(GET$pc), \n                as.numeric(GET$N), \n                as.numeric(GET$Nc)))\n}\n\nOK\n\n<\/pre>\n<p>For instance, the output of http:\/\/localhost:8080\/R\/ws.R?p=.15&pc=.10&N=1000&Nc=1100<br \/>\nis \"TRUE\"<\/p>\n","protected":false},"excerpt":{"rendered":"<p>R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I&#8217;ve been exploring the language to gain insight into related, &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Building a statistical significance testing web service powered by R&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[4,6,27],"tags":[440,450,452,559,587],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I&#039;ve been exploring the language to gain insight into related,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Building a statistical significance testing web service powered by R - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I&#039;ve been exploring the language to gain insight into related,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-10-18T13:40:19+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-10-18T13:40:19+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Building a statistical significance testing web service powered by R - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I&#039;ve been exploring the language to gain insight into related,\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#blogposting\",\"name\":\"Building a statistical significance testing web service powered by R - Gary Sieling\",\"headline\":\"Building a statistical significance testing web service powered by R\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"datePublished\":\"2012-10-18T13:40:19+00:00\",\"dateModified\":\"2012-10-18T13:40:19+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#webpage\"},\"articleSection\":\"Code Examples, Data Science, Statistics, programming techniques, R, r-project, ubuntu, web development\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"position\":2,\"name\":\"Code Examples\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#listItem\",\"name\":\"Building a statistical significance testing web service powered by R\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#listItem\",\"position\":3,\"name\":\"Building a statistical significance testing web service powered by R\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/\",\"name\":\"Building a statistical significance testing web service powered by R - Gary Sieling\",\"description\":\"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I've been exploring the language to gain insight into related,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/building-a-statistical-significance-testing-web-service-powered-by-r\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2012-10-18T13:40:19+00:00\",\"dateModified\":\"2012-10-18T13:40:19+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Building a statistical significance testing web service powered by R - Gary Sieling","description":"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I've been exploring the language to gain insight into related,","canonical_url":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#blogposting","name":"Building a statistical significance testing web service powered by R - Gary Sieling","headline":"Building a statistical significance testing web service powered by R","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"datePublished":"2012-10-18T13:40:19+00:00","dateModified":"2012-10-18T13:40:19+00:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#webpage"},"articleSection":"Code Examples, Data Science, Statistics, programming techniques, R, r-project, ubuntu, web development"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","position":2,"name":"Code Examples","item":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#listItem","name":"Building a statistical significance testing web service powered by R"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#listItem","position":3,"name":"Building a statistical significance testing web service powered by R","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/","name":"Building a statistical significance testing web service powered by R - Gary Sieling","description":"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I've been exploring the language to gain insight into related,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2012-10-18T13:40:19+00:00","dateModified":"2012-10-18T13:40:19+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"Building a statistical significance testing web service powered by R - Gary Sieling","og:description":"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I've been exploring the language to gain insight into related,","og:url":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/","article:published_time":"2012-10-18T13:40:19+00:00","article:modified_time":"2012-10-18T13:40:19+00:00","twitter:card":"summary_large_image","twitter:title":"Building a statistical significance testing web service powered by R - Gary Sieling","twitter:description":"R is a programming language focused on solving statistical and mathematical calculations. R programs often operate on large, in-memory data sets, which feels somewhat similar to database programming. Examples in the R Cookbook bear a resemblence to functional programming in clojure, as others have noted. I've been exploring the language to gain insight into related,"},"aioseo_meta_data":{"post_id":"628","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:10:02","updated":"2026-07-06 00:48:50","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/\" title=\"Code Examples\">Code Examples<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBuilding a statistical significance testing web service powered by R\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Code Examples","link":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/"},{"label":"Building a statistical significance testing web service powered by R","link":"https:\/\/www.garysieling.com\/blog\/building-a-statistical-significance-testing-web-service-powered-by-r\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/628"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=628"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/628\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}