<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Sean Conroy</title>
    <link>/</link>
    <description>Recent content on Sean Conroy</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 02 Apr 2021 00:00:00 +0000</lastBuildDate><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>R with data.table</title>
      <link>/2021/04/02/r-w-data-table/</link>
      <pubDate>Fri, 02 Apr 2021 00:00:00 +0000</pubDate>
      
      <guid>/2021/04/02/r-w-data-table/</guid>
      <description>Forgive this rant at the tidyverse universe. I started out learning R from Roger Peng’s excellent intro on Coursera. However, it wasn’t long before the tidyverse was being suggested as the ideal workflow for data science. Everything I could possibly want was offered by Hadley and Co. at RStudio. Need to plot stuff? There’s ggplot2. Need to work with dates? There’s lubridate. Need models? There’s parsnip (now caret). Need data manipulation?</description>
    </item>
    
    <item>
      <title>Graph Feature Identification with 1D Conv Nets</title>
      <link>/2021/02/22/graph-feature-identification-with-1d-conv-nets/</link>
      <pubDate>Mon, 22 Feb 2021 00:00:00 +0000</pubDate>
      
      <guid>/2021/02/22/graph-feature-identification-with-1d-conv-nets/</guid>
      <description>Motivation: Often in my line of work I’m asked to identify “kinks”, curves or bends in XY graph data, and I’ve spent inordinate amounts of time coding up various algorithms to find the change in the slope or threshold a change in the deviation around a linear fit, etc. These algorithms are never terrible accurate, and after taking most of Andrew Ng’s excellent Conv Nets class on Coursera last year, I’ve often wondered if CNN’s could be configured to be used for this type of work.</description>
    </item>
    
    <item>
      <title>Crime Rates in Dallas</title>
      <link>/2021/01/23/crime-rates-in-dallas/</link>
      <pubDate>Sat, 23 Jan 2021 00:00:00 +0000</pubDate>
      
      <guid>/2021/01/23/crime-rates-in-dallas/</guid>
      <description>To explore the Dallas Crime data more yourself, check out my Dallas Crime Explorer Shiny app here.
The code behind this blog post is on GitHub here.
First, let’s calculate the Crime Rates:
PI[,Date := as.Date(substr(date1,1,10))] PI &amp;lt;- PI[Date &amp;gt;= as.Date(&amp;quot;2014-06-01&amp;quot;),] setorder(PI,Date) PI[,MonthDate := as.Date(paste0(format(Date,&amp;quot;%Y-%m&amp;quot;),&amp;quot;-01&amp;quot;))] PI[grepl(&amp;quot;MURDER&amp;quot;,offincident) | grepl(&amp;quot;HOMICIDE&amp;quot;,offincident) | grepl(&amp;quot;MURDER&amp;quot;,ucr_offense) | grepl(&amp;quot;HOMICIDE&amp;quot;,nibrs_crime_category) | grepl(&amp;quot;MURDER&amp;quot;,nibrs_crime), NumMurdersPerMonth := .N,by = MonthDate] PI[,NumMurdersPerMonth := mean(NumMurdersPerMonth,na.</description>
    </item>
    
    <item>
      <title>Shiny Apps for Analyzing Dallas Police Data</title>
      <link>/2021/01/14/shiny-apps-for-analyzing-dallas-police-data/</link>
      <pubDate>Thu, 14 Jan 2021 00:00:00 +0000</pubDate>
      
      <guid>/2021/01/14/shiny-apps-for-analyzing-dallas-police-data/</guid>
      <description>Exploring Dallas Murders

 Forecasting Dallas Crime Rates

  Exploring Dallas Trafficking

     To explore the Dallas Crime data more yourself, check out my Dallas Crime Explorer Shiny app here.
To explore the Dallas Murder data more yourself, check out my Dallas Murder Shiny app here.
Dallas Trafficking To explore the Dallas Trafficking data yourself, check out my Dallas Trafficking Shiny app here.</description>
    </item>
    
    <item>
      <title>Mapping Murders in Dallas</title>
      <link>/2020/12/22/mapping-murders-in-dallas/</link>
      <pubDate>Tue, 22 Dec 2020 00:00:00 +0000</pubDate>
      
      <guid>/2020/12/22/mapping-murders-in-dallas/</guid>
      <description>To explore the Dallas Murder data more yourself, check out my Shiny app here.
The code behind this blog post is on GitHub here.
Note, 1-11-2020: Data has been refreshed to include all of 2020.
## Warning: package &amp;#39;gifski&amp;#39; was built under R version 4.0.3 All Dallas Murders since 2014, Color by Year
Let’s take a look at the Dallas murders on a map for each year.
Let’s take a look at the murders just for 2020.</description>
    </item>
    
    <item>
      <title>About</title>
      <link>/about/</link>
      <pubDate>Wed, 02 Dec 2020 00:00:00 +0000</pubDate>
      
      <guid>/about/</guid>
      <description>This is the personal website of Sean Conroy.
My full resume is here.
My interests are in applying statistics and machine learning to big hairy problems, and seeing if anything sticks.
You can contact me at seantconroy at gmail.com</description>
    </item>
    
    <item>
      <title>Murder Rates in Dallas</title>
      <link>/2020/12/02/murder-rates-in-dallas/</link>
      <pubDate>Wed, 02 Dec 2020 00:00:00 +0000</pubDate>
      
      <guid>/2020/12/02/murder-rates-in-dallas/</guid>
      <description>Data Source Based on the following data set ‘Police Incidents’ from Dallas Open Data.
To explore the Dallas Murder data more yourself, check out my Shiny app here.
The code behind this blog post is on GitHub here.
Data refresh date: 1-9-2021
Load data directly from DallasOpenData using Socrata API:
PI &amp;lt;- read.socrata(&amp;quot;https://www.dallasopendata.com/resource/qv6i-rri7.csv&amp;quot;) setDT(PI)  Analysis Ok, let’s get to work.
First, let’s extract murder incidents by looking for “MURDER” or “HOMICIDE” in various columns used to describe the incident.</description>
    </item>
    
  </channel>
</rss>
