quarto-blog/_site/search.json

58 lines
5.3 KiB
JSON
Raw Normal View History

2023-10-11 09:41:10 -04:00
[
{
"objectID": "posts/welcome/index.html",
"href": "posts/welcome/index.html",
"title": "Welcome To My Blog",
"section": "",
"text": "This is the first post in a Quarto blog. Welcome!\n\nSince this post doesnt specify an explicit image, the first image in the post will be used in the listing page of posts."
},
{
2023-10-11 11:15:38 -04:00
"objectID": "index.html",
"href": "index.html",
"title": "About",
2023-10-11 09:41:10 -04:00
"section": "",
2023-10-11 11:15:38 -04:00
"text": "I am a highly accomplished Medical Technologist with an extensive 14-year track record in the medical industry, consistently demonstrating the ability to effectively bridge the divide between medical professionals and information technologists. Proficient in the application of machine learning techniques to enhance medical data analysis and adept at developing innovative R Shiny apps to streamline healthcare processes and improve patient outcomes."
2023-10-11 09:41:10 -04:00
},
{
2023-10-11 11:15:38 -04:00
"objectID": "index.html#bio",
"href": "index.html#bio",
"title": "About",
"section": "",
"text": "I am a highly accomplished Medical Technologist with an extensive 14-year track record in the medical industry, consistently demonstrating the ability to effectively bridge the divide between medical professionals and information technologists. Proficient in the application of machine learning techniques to enhance medical data analysis and adept at developing innovative R Shiny apps to streamline healthcare processes and improve patient outcomes."
},
{
"objectID": "index.html#education",
"href": "index.html#education",
"title": "About",
"section": "Education",
"text": "Education\nCampbell University | Buies Creek, NC\nDoctorate of Health Sciences | August 2020 - May 2023\nUniversity of Central Florida | Orlando, FL\nM.S. in Healthcare Informatics | August 2018 - May 2020\nWestern Carolina University | Cullowhee, NC\nB.S. in Clinical Laboratory Science | August 2005 - May 2009"
},
{
"objectID": "index.html#experience",
"href": "index.html#experience",
"title": "About",
"section": "Experience",
"text": "Experience\nRoche Diagnositcs | IT Workflow Consultant | Oct 2021 - Present\nRoche Diagnostics | Field Application Specialist | July 2012 - Sept 2021\nCape Fear Valley Hospital | Lead Medical Laboratory Scientist | June 2011 - July 2012\nCape Fear Valley Hospital | Medical Laboratory Scientist | June 2009 - June 2011"
},
{
"objectID": "blog.html",
"href": "blog.html",
"title": "Posts",
2023-10-11 09:41:10 -04:00
"section": "",
2023-10-11 15:22:24 -04:00
"text": "My Start to R\n\n\nA short introduction to my blog, and R journey.\n\n\n\n\n\n\n\n\n\nJan 24, 2020\n\n\nKyle Belanger\n\n\n\n\n\n\nNo matching items"
2023-10-11 11:15:38 -04:00
},
{
"objectID": "posts/post-with-code/index.html",
"href": "posts/post-with-code/index.html",
"title": "Post With Code",
"section": "",
"text": "This is a post with executable code."
2023-10-11 15:22:24 -04:00
},
{
"objectID": "posts/2020-01-04_my-start-to-r/my-start-to-r.html",
"href": "posts/2020-01-04_my-start-to-r/my-start-to-r.html",
"title": "My Start to R",
"section": "",
"text": "Today starts my attempt at sharing my R journey with the world! I have been learning R off and on now since late 2019, I have begun to take it much more serious as I work through my Data Analytics class at UCF. My love for all things numbers and graphs has really blossomed, and I am choosing to share that love with anyone who cares to read. I will not claim to be the best at R, or any programming for that matter, but these are my attempts. Each post in this serious will be replicated a graph created in Tableau from the book Tableau for Healthcare. Todays graph is a simple horizontal bar chart, in transferring to both a new blog site and computer I have unfortunately lost the original bar graph, but trust me the one I created looks just like it.\n\nLoad Libraries\n\nlibrary(tidyr)\nlibrary(magrittr)\nlibrary(ggplot2)\nlibrary(stringr)\nlibrary(dplyr)\n\n\n\nImport Data\n\nds <- readxl::read_excel(\n path = \"Tableau 10 Training Practice Data.xlsx\" \n ,sheet = \"02 - Patient Falls-Single Hosp\"\n )\n\n\n\nClean Data Names\n\n#should make reusable forumla at later time\nnames(ds) <- tolower(names(ds))\nnames(ds) <- str_replace_all(names(ds),\" \", \"_\")\n\n\n\nConvert Data to Long Form\n\nds1 <- ds %>% \n gather(\"patient_falls_no_injury_rate\" , \"patient_falls_with_injury_rate\"\n ,key = \"injury\" \n ,value = \"rate\" ) %>% \n mutate(injury = (injury == \"patient_falls_with_injury_rate\"))\n\n\n\nGraph 5.1\n\nb1 <- ds %>% \n ggplot(mapping = aes(x = reorder(type_of_care,total_patient_falls_rate ) , y = total_patient_falls_rate)) +\n geom_col(fill = \"#2b83ba\") + \n coord_flip() +\n scale_y_continuous(breaks = NULL) +\n theme(axis.ticks = element_blank()) +\n labs(title = \"Rate of Patient Falls (per 1,000 Pateint Days)\\nby Type of Care for FY2017\"\n ,x = NULL\n ,y = NULL\n ) +\n theme_classic() +\n geom_text(aes(label = format(total_patient_falls_rate, digits = 2)), nudge_y = -.25, color = \"white\")\n \nb1\n\n\n\n\n\n\n\n\nCitationBibTeX citation:@online{belanger2020,\n author = {Belanger, Kyle},\n title = {My {Start} to {R}},\n date = {2020-01-24},\n langid = {en}\n}\nFor attribution, please cite this work as:\nBelanger, Kyle. 2020. “My Start to R.” January 24, 2020."
2023-10-11 09:41:10 -04:00
}
]