<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.2">Jekyll</generator><link href="https://cdonahu.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://cdonahu.github.io/" rel="alternate" type="text/html" /><updated>2022-07-18T19:02:46+00:00</updated><id>https://cdonahu.github.io/feed.xml</id><title type="html">Claudia’s Blog</title><subtitle>This is my blog for ST 558</subtitle><author><name>C. Donahue</name></author><entry><title type="html">End of the Term</title><link href="https://cdonahu.github.io/End-of-Course.html" rel="alternate" type="text/html" title="End of the Term" /><published>2022-07-18T00:00:00+00:00</published><updated>2022-07-18T00:00:00+00:00</updated><id>https://cdonahu.github.io/End-of-Course</id><content type="html" xml:base="https://cdonahu.github.io/End-of-Course.html">&lt;p&gt;Claudia Donahue
2022-07-18&lt;/p&gt;

&lt;h2 id=&quot;using-r-for-data-science-my-thoughts&quot;&gt;Using R for Data Science: My Thoughts&lt;/h2&gt;

&lt;p&gt;I have really enjoyed working in R and using RStudio this term, after
not having used it for several years. A lot of what I use in the future
is going to depend on what I have access to in the workplace. I know
there is a great chance I will be able to use R, so I expect to have a
lot of opportunity to use it. If I had to make a prediction, I will
probably just be battling the status quo of using Excel to handle
anything related to data.&lt;/p&gt;

&lt;p&gt;It will be helpful that I now have experience using R Markdown to create
.pdf and .html files to share reproducible work.&lt;/p&gt;

&lt;h2 id=&quot;what-has-changed-for-me&quot;&gt;What Has Changed for Me&lt;/h2&gt;

&lt;p&gt;Now that I have this recency and depth in R, I will have to decide when
I feel it’s appropriate to use R or Python, or another tool (probably
Excel) at work. I also feel more equipped to work consistently on side
projects or further self study outside of work, and I feel fortunate to
know some experts at NC State, if I ever need to reach out.&lt;/p&gt;

&lt;h2 id=&quot;my-next-exploration&quot;&gt;My Next Exploration&lt;/h2&gt;

&lt;p&gt;I am interested in trying out a competition, like Kaggle, or one through
my employer. I also already have a request from a friend in my
neighborhood to help them with some modeling. I am looking forward to
seeing how I can help!&lt;/p&gt;

&lt;p&gt;At work, I am sure I’ll be exploring how to efficiently create
dashboards useful for leaders in my organization.&lt;/p&gt;

&lt;p&gt;In my community, I like the idea of presenting publicly available data
in ways others can better understand and draw conclusions.&lt;/p&gt;

&lt;p&gt;I am looking forward to completing my final project Shiny App with
multiple pages and brainstorming similar things I could create as
community tools.&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-07-18</summary></entry><entry><title type="html">Machine Learning Module</title><link href="https://cdonahu.github.io/Machine-Learning.html" rel="alternate" type="text/html" title="Machine Learning Module" /><published>2022-07-14T00:00:00+00:00</published><updated>2022-07-14T00:00:00+00:00</updated><id>https://cdonahu.github.io/Machine-Learning</id><content type="html" xml:base="https://cdonahu.github.io/Machine-Learning.html">&lt;p&gt;Claudia Donahue
2022-07-14&lt;/p&gt;

&lt;h2 id=&quot;learning-about-machine-learning&quot;&gt;Learning About Machine Learning&lt;/h2&gt;

&lt;p&gt;We just finished the course’s section on Machine Learning. We did a
little bit of unsupervised learning, but mostly supervised learning,
meaning we were trying to predict a target variable, versus just looking
for patterns and relationships in the data.&lt;/p&gt;

&lt;h3 id=&quot;supervised-learning&quot;&gt;Supervised Learning&lt;/h3&gt;

&lt;p&gt;We covered the standard regression model and then generalized linear
models to predict (or classify) a target variable. Then we worked on
nonlinear methods and ensemble learning.&lt;/p&gt;

&lt;h3 id=&quot;unsupervised-learning&quot;&gt;Unsupervised Learning&lt;/h3&gt;

&lt;p&gt;Finally, we looked at two methods of unsupervised learning, principal
components analysis and clustering.&lt;/p&gt;

&lt;h2 id=&quot;what-i-liked-most&quot;&gt;What I Liked Most&lt;/h2&gt;

&lt;p&gt;In this module, I would say the classification trees were most
interesting to me. A commonly used example seems to be using the data
containing characteristics of passengers on the &lt;em&gt;Titanic&lt;/em&gt; to predict
whether each one survived the ship sinking. I like that you can output a
decision tree, and then follow along that tree to make a prediction on
an observation. I think that sort of visualization alone can be quite
useful in highlighting feature importance.&lt;/p&gt;

&lt;p&gt;I liked using the &lt;code&gt;caret&lt;/code&gt; package because it simplified training a huge
variety of models. Here we will fit a model using &lt;code&gt;caret::train&lt;/code&gt;, and
then display a visualization of the resulting tree to show how cool it
is as a tool to understand the importance of different variables. We are
predicting survival based on variables like age, passenger class, ticket
fare, and sex:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&quot;language-r&quot;&gt;library(caret)
fit &amp;lt;- train(x = training[,2:8], 
                y = training[,1],
                method = &quot;rpart&quot;,
                preProcess = c(&quot;center&quot;, &quot;scale&quot;),
                cp = 0.001,
                trControl = trainControl(method = &quot;cv&quot;, 
                                         number = 3)
                )
# Plot the tree using the rattle package
library(rattle)
fancyRpartPlot(fit$finalModel)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;img src=&quot;../images/classification%20tree-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;p&gt;You could take your own characteristics, for example, and follow through
this tree to get a prediction on whether you would have survived the
sinking of the Titanic. If you are ‘male’, it is pretty simple. 81
percent of males passengers died. If you are a female, the models
predicts your survival only if you had a higher &lt;code&gt;Pclass&lt;/code&gt; ( passenger
class) or paid more for your passenger &lt;code&gt;fare&lt;/code&gt;.&lt;/p&gt;

&lt;h2 id=&quot;more-on-why-i-like-classification-trees&quot;&gt;More on Why I Like Classification Trees&lt;/h2&gt;

&lt;p&gt;As I begin working on my final projects for both my summer courses, two
great datasets I’m eyeing are:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;&lt;a href=&quot;https://www.kaggle.com/code/khsamaha/ntsb-us-aviation-accident-up-to-jan-2022/data&quot;&gt;one from the
NTSB&lt;/a&gt;
(National Transportation Safety Board) on airplane crashes and
fatalities. I like to fly, and potentially may buy a small plane at
some point. I want to pick one that not only is affordable for me,
but also that would keep my family and me alive in the event of an
mishap.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;&lt;a href=&quot;https://www.kaggle.com/datasets/atharvaingle/bikepedcrash&quot;&gt;a
second&lt;/a&gt;
on vehicles colliding with cyclists and pedestrians in North
Carolina. I am hopeful that research can lead to evidence-based
improvements in my local community, like more funding and increased
safety measures for alternative transportation.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A decision tree with this sort of data may enable a community leader to
plug in locally relevant observations (themselves/their
neighborhoods/their grandkids) and understand the likelihood of
bike/pedestrian fatalities if nothing changes. They could get an idea
where in the community bike/pedestrian funding would make the largest
impact.&lt;/p&gt;

&lt;p&gt;Hopefully I can use the skills I’m gaining this summer to make a
positive impact!&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-07-14</summary></entry><entry><title type="html">Automating R Markdown</title><link href="https://cdonahu.github.io/Automating-R-Markdown.html" rel="alternate" type="text/html" title="Automating R Markdown" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>https://cdonahu.github.io/Automating-R-Markdown</id><content type="html" xml:base="https://cdonahu.github.io/Automating-R-Markdown.html">&lt;p&gt;Claudia Donahue
2022-07-08&lt;/p&gt;

&lt;h2 id=&quot;the-assignment&quot;&gt;The Assignment&lt;/h2&gt;

&lt;p&gt;Our second project in this summer course was to use &lt;a href=&quot;https://archive.ics.uci.edu/ml/datasets/Online+News+Popularity&quot;&gt;this
data&lt;/a&gt; to
make several models to predict the number of times readers shared an
article from Mashable. The data set was split into six
channels–lifestyle, entertainment, business, social media, tech, and
world–and our job was to automate a report for each channel from a
single R Markdown file. We were also practicing building, testing, and
comparing regression and ensemble models, using the &lt;code&gt;caret&lt;/code&gt; package in
R.&lt;/p&gt;

&lt;h2 id=&quot;our-solution&quot;&gt;Our Solution&lt;/h2&gt;

&lt;p&gt;You can see how our resulting six reports at &lt;a href=&quot;https://cdonahu.github.io/st558-project2/&quot;&gt;this
link&lt;/a&gt;, and delve deeper into
how we solved the problem at our Github repo
&lt;a href=&quot;https://github.com/cdonahu/st558-project2&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;my-thoughts&quot;&gt;My Thoughts&lt;/h2&gt;

&lt;p&gt;Happily, I do not think I would do a lot differently. I am glad to say
we started working on this project as early as we could, and we had
plenty of time to complete the work. I did notice that our predictive
models were not making great predictions, so I might change the goal
from predicting the dependent variable (number of shares) to predicting
the &lt;em&gt;logarithm&lt;/em&gt; of the number of shares.&lt;/p&gt;

&lt;p&gt;The most difficult part I encountered was in building the random forest
model. I initially made the model so complex–both the tuning parameters
and the repeated cross-validation–that the &lt;code&gt;caret::train()&lt;/code&gt; function
would run and run, never finishing. Once I simplified the model by
reducing the &lt;em&gt;mtry&lt;/em&gt; tuning parameter and no longer repeating the
cross-validation, the model worked.&lt;/p&gt;

&lt;h2 id=&quot;the-takeaway&quot;&gt;The Takeaway&lt;/h2&gt;

&lt;p&gt;R Markdown is useful for so many reasons, and automating reports was
within my reach. I think understanding this concept could be useful for
me in the future.&lt;/p&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-07-08</summary></entry><entry><title type="html">Update on How R Programming Is Going</title><link href="https://cdonahu.github.io/Third-blog-post.html" rel="alternate" type="text/html" title="Update on How R Programming Is Going" /><published>2022-06-27T00:00:00+00:00</published><updated>2022-06-27T00:00:00+00:00</updated><id>https://cdonahu.github.io/Third-blog-post</id><content type="html" xml:base="https://cdonahu.github.io/Third-blog-post.html">&lt;p&gt;Claudia Donahue
2022-06-27&lt;/p&gt;

&lt;h2 id=&quot;so-far-this-summer&quot;&gt;So Far This Summer…&lt;/h2&gt;

&lt;p&gt;We are just about halfway through the summer term (my final term in my
program!), and I have made plenty of progress. We are done learning
about how to program in R and the rest of the coursework will explore
other skills.&lt;/p&gt;

&lt;p&gt;The coolest thing I have learned so far in the course is how to share my
work using R markdown and Github Pages. Before this course, I had a
brief introduction to programming in R about 4 years ago and had not
used it much since then. Markdown was not a big part of that weeklong
intro for me. I have found it really useful to create something I could
then pass along to a colleague who wants to know how I got my results or
how to replicate my work with their data.&lt;/p&gt;

&lt;p&gt;Another thing I am happy to have learned in R is how to create custom
functions. This skill has been useful to develop so far my degree
program when I want to use an algorithmic method to solve certain types
of problems, but until now I have used other languages, like Python or
Julia.&lt;/p&gt;

&lt;p&gt;Here’s an example of a custom function that, given a numeric vector and
a mean value to compare against, calculates the test statistic:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&quot;language-r&quot;&gt;tStat &amp;lt;- function(vec, mean){
  
  tObs &amp;lt;- (mean(vec) - mean) / (sd(vec)/sqrt(length(vec)))
  
  return(tObs)
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I look forward to learning more skills that will be useful in my career
in operations research!&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-06-27</summary></entry><entry><title type="html">API Interaction: A Vignette</title><link href="https://cdonahu.github.io/Vignette-blog-post.html" rel="alternate" type="text/html" title="API Interaction: A Vignette" /><published>2022-06-26T00:00:00+00:00</published><updated>2022-06-26T00:00:00+00:00</updated><id>https://cdonahu.github.io/Vignette-blog-post</id><content type="html" xml:base="https://cdonahu.github.io/Vignette-blog-post.html">&lt;p&gt;Claudia Donahue
2022-06-26&lt;/p&gt;

&lt;h1 id=&quot;the-vignette-assignment&quot;&gt;The Vignette Assignment&lt;/h1&gt;

&lt;p&gt;Our class was assigned to choose an API from a list and create a
vignette, demonstrating to a user how to interact with that API. I
initially chose the Pokemon API but had very limited success working
with it and switched after a couple (wasted?) days. I ended up using a
COVID-19 data API.&lt;/p&gt;

&lt;p&gt;I created a bunch of functions which allow a user to interact with the
API and select options, like a country or timeline of interest. The user
then gets a dataframe or a graph, depending which function. Then I
explored the data further, using techniques we have been learning this
term.&lt;/p&gt;

&lt;h1 id=&quot;reflections&quot;&gt;Reflections&lt;/h1&gt;

&lt;p&gt;I found that I was left with a lot of questions. It was interesting to
note that the United States has a much higher confirmed case count than
any other country, but I wondered about record keeping and reporting.
The same with the numbers of deaths. I also learned that a lot of the
compelling data is behind a subscription fee, as I wished I had access
to population and GDP data within the API, but I did not want to pay for
it and did not have an excess of time to figure out how to match it up.&lt;/p&gt;

&lt;p&gt;I had trouble with this data set because it was not easy to categorize
and explore the data the way we have been in other assignments. I had to
add a new variable so that I had some interesting categories to compare
across. Still, it was better than the Pokemon API, where I could not
make a function return a decent dataframe in a reasonable amount of
working time.&lt;/p&gt;

&lt;p&gt;I am happy to be getting more comfortable using github for version
control. &lt;a href=&quot;https://github.com/cdonahu/ST558-project-1&quot;&gt;Here&lt;/a&gt; is a link to
my repository for this project.&lt;/p&gt;

&lt;h1 id=&quot;next-time&quot;&gt;Next time&lt;/h1&gt;

&lt;p&gt;Next time I have a project like this, I like to think I will start
earlier and ask for help (probably) to make sure I can properly use the
data I want to use (Pokemon – to get my kids interested in data
science). I also probably will not choose an API just based on whether I
have to sign up for my own key. Who knows–I might even pay my own money
for access to an API one day!&lt;/p&gt;

&lt;h2 id=&quot;last-thing&quot;&gt;Last thing&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://cdonahu.github.io/ST558-project-1/&quot;&gt;Here&lt;/a&gt; is the link to my
github pages repo for this project. I made it public on the due date for
the project, as directed.&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-06-26</summary></entry><entry><title type="html">Programming Background</title><link href="https://cdonahu.github.io/Programming-Background-blog-post.html" rel="alternate" type="text/html" title="Programming Background" /><published>2022-06-06T00:00:00+00:00</published><updated>2022-06-06T00:00:00+00:00</updated><id>https://cdonahu.github.io/Programming-Background-blog-post</id><content type="html" xml:base="https://cdonahu.github.io/Programming-Background-blog-post.html">&lt;p&gt;Claudia Donahue
2022-06-06&lt;/p&gt;

&lt;h2 id=&quot;my-experience-so-far&quot;&gt;My Experience So Far&lt;/h2&gt;

&lt;p&gt;The majority of my programming experience was in the Fall 2021 term in
&lt;code&gt;ISE 535 Intro to Python&lt;/code&gt;. I also did a weeklong course,
&lt;code&gt;Intro to R Programming&lt;/code&gt; in 2018, and I took an introductory course in
&lt;code&gt;SAS&lt;/code&gt; during the summer of 2021. Unfortunately, at work I usually use
Excel, and my programming gains atrophy quickly.&lt;/p&gt;

&lt;p&gt;My thoughts on &lt;code&gt;R&lt;/code&gt; so far in this course: I really like using Markdown
in &lt;code&gt;R&lt;/code&gt; to create a readable document. I think that this tool/skill will
help me use &lt;code&gt;R&lt;/code&gt; at work to create products for my coworkers who may not
know anything about &lt;code&gt;R&lt;/code&gt; or have any interest. And also for those who do,
so they could understand and reproduce my work.&lt;/p&gt;

&lt;p&gt;I also like using RStudio with Github so far, for version control. I
have had trouble working on projects with partners/groups because we are
all working on one file and can’t figure out how to best merge changes,
so one team member does most of the work.&lt;/p&gt;

&lt;p&gt;I don’t think I will miss much about other programming languages,
especially Python since I am using it regularly in another course this
summer! I do not consider R any more or less difficult than the other
programming languages I have experienced, and it is much easier than
foreign languages I have tried to learn, specifically Russian and
French.&lt;/p&gt;

&lt;h2 id=&quot;r-markdown-output&quot;&gt;R Markdown Output&lt;/h2&gt;

&lt;p&gt;Below, I am going to plot the Cars data set to make sure I can get the
image to show up on my blog post:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&quot;language-r&quot;&gt;plot(cars, xlab = &quot;Speed (mph)&quot;, ylab = &quot;Stopping distance (ft)&quot;,
    las = 1, xlim = c(0, 25))
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;img src=&quot;../images/Plot%20of%20Cars%20data-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Claudia Donahue 2022-06-06</summary></entry><entry><title type="html">This is my first blog post</title><link href="https://cdonahu.github.io/your-new-blog-post.html" rel="alternate" type="text/html" title="This is my first blog post" /><published>2022-05-19T00:00:00+00:00</published><updated>2022-05-19T00:00:00+00:00</updated><id>https://cdonahu.github.io/your-new-blog-post</id><content type="html" xml:base="https://cdonahu.github.io/your-new-blog-post.html">&lt;h1 id=&quot;my-quick-take-on-the-role-of-data-scientists&quot;&gt;My Quick Take on the Role of Data Scientists&lt;/h1&gt;

&lt;p&gt;A data scientist must be familiar with all aspects of their organization, aware of the data it has, and able to communicate with stakeholders clearly to inform decision making. They must understand how to employ and how to value the tools at their disposal, whether the tool is a team member who can program or an application simplifying machine learning.&lt;/p&gt;

&lt;p&gt;But to really hold the title of data scientist and be reliable and essential within one’s organization, I think it takes more than the traditional Venn diagram of math, computer science, and subject matter expertise. I think this visualization, and several job listings cited in the blog posts we read for this assignment, were missing &lt;b&gt;organizational trust&lt;/b&gt;.&lt;/p&gt;

&lt;p&gt;I think any employer giving an employee broad access to its data must be aware of the risks inherent in sharing this information. Whether it’s private medical details, financial transactions, strategic business plans, or military troop numbers, leaders have much at stake within the data they collect.&lt;/p&gt;

&lt;h2 id=&quot;data-science-vs-statistics&quot;&gt;Data Science vs. Statistics&lt;/h2&gt;

&lt;p&gt;With apologies for my limited understanding of what statisticians do, I think we could fairly state that a data scientist is a statistician with a particular set of skills, including some programming. Kind of a special &lt;em&gt;flavor&lt;/em&gt; of statistician! I do not believe, based on the articles I was assigned to read, as well as my own set of experiences, that a statistician necessarily has to be capable of data science. Computer programming and a level of expertise in a subject other than stats are not requirements to be a statistician, but are necessary for a successful data scientist. Perhaps a data scientist does not always need to have as great an understanding of statistics as someone serving in a statistician role. But a strong understanding of statistics certainly would make a stronger data scientist, able to more confidently find and explore questions and solutions through data.&lt;/p&gt;

&lt;h2 id=&quot;me&quot;&gt;Me&lt;/h2&gt;

&lt;p&gt;My perspective is, of course, formed through my own experiences. I don’t fit neatly into the data scientist or statistician bin at all. My background includes forays into military rotary wing aviation, leadership, economics (undergraduate), and (lately) operations research. (Side note: Operations research is another interdisciplinary field with a really &lt;em&gt;squishy&lt;/em&gt; definition)&lt;/p&gt;

&lt;p&gt;I find many of the hard skills I have studied in these fields are incredibly perishable and also time consuming. The impact of those qualities is that moving to a new field can prevent a person from considering themselves a member of a previous field, even when the areas seem complementary.&lt;/p&gt;

&lt;p&gt;For this assignment, we students read through multiple articles/blog posts which sought to define a Data Scientist and distinguish it from similar career fields. Multiple authors cited the private sector demand for these employees; however, I noticed no one touched on the need for data science within government. But that is my only experience so far. I look forward to gaining more perspective this summer through the teaching and fellowship in this course.&lt;/p&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">My Quick Take on the Role of Data Scientists</summary></entry><entry><title type="html">Blog Post Title From First Header</title><link href="https://cdonahu.github.io/blog-post-title-from-file-name.html" rel="alternate" type="text/html" title="Blog Post Title From First Header" /><published>2021-03-08T00:00:00+00:00</published><updated>2021-03-08T00:00:00+00:00</updated><id>https://cdonahu.github.io/blog-post-title-from-file-name</id><content type="html" xml:base="https://cdonahu.github.io/blog-post-title-from-file-name.html">&lt;p&gt;Due to a plugin called &lt;code&gt;jekyll-titles-from-headings&lt;/code&gt; which is supported by GitHub Pages by default. The above header (in the markdown file) will be automatically used as the pages title.&lt;/p&gt;

&lt;p&gt;If the file does not start with a header, then the post title will be derived from the filename.&lt;/p&gt;

&lt;p&gt;This is a sample blog post. You can talk about all sorts of fun things here.&lt;/p&gt;

&lt;hr /&gt;

&lt;h3 id=&quot;this-is-a-header&quot;&gt;This is a header&lt;/h3&gt;

&lt;h4 id=&quot;some-t-sql-code&quot;&gt;Some T-SQL Code&lt;/h4&gt;

&lt;pre&gt;&lt;code class=&quot;language-tsql&quot;&gt;SELECT This, [Is], A, Code, Block -- Using SSMS style syntax highlighting
    , REVERSE('abc')
FROM dbo.SomeTable s
    CROSS JOIN dbo.OtherTable o;
&lt;/code&gt;&lt;/pre&gt;

&lt;h4 id=&quot;some-powershell-code&quot;&gt;Some PowerShell Code&lt;/h4&gt;

&lt;pre&gt;&lt;code class=&quot;language-powershell&quot;&gt;Write-Host &quot;This is a powershell Code block&quot;;

# There are many other languages you can use, but the style has to be loaded first

ForEach ($thing in $things) {
    Write-Output &quot;It highlights it using the GitHub style&quot;
}
&lt;/code&gt;&lt;/pre&gt;</content><author><name>C. Donahue</name></author><category term="Other" /><summary type="html">Due to a plugin called jekyll-titles-from-headings which is supported by GitHub Pages by default. The above header (in the markdown file) will be automatically used as the pages title.</summary></entry></feed>