<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>analytics on Artistic Portfolio of Chris Ried</title>
    <link>https://generativecollective.com/categories/analytics/</link>
    <description>Recent content in analytics on Artistic Portfolio of Chris Ried</description>
    <image>
      <url>https://generativecollective.com/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E</url>
      <link>https://generativecollective.com/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E</link>
    </image>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Sun, 18 Oct 2020 00:00:00 +0000</lastBuildDate><atom:link href="https://generativecollective.com/categories/analytics/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Using Analytics to Determine Ideal Hashtags for Instagram</title>
      <link>https://generativecollective.com/posts/using-analytics-to-determine-ideal-hashtags/</link>
      <pubDate>Sun, 18 Oct 2020 00:00:00 +0000</pubDate>
      
      <guid>https://generativecollective.com/posts/using-analytics-to-determine-ideal-hashtags/</guid>
      <description>library(stringr) library(readr) library(tidyverse) library(lubridate) I have been curious on what makes an interesting post on instagram based on a larger dataset of images that have been tagged with #generativeart. Some of this is just data discovery, this could seem that there may be a correlation between the tags that have been used and the amount of likes there are.
# Extract hashtags patt &amp;lt;- regex(&amp;#34;#\\S+&amp;#34;) genart &amp;lt;- read_csv(&amp;#34;~/InstaCrawlR/table-generativeart-2020-10-11 13:35:33.csv&amp;#34;) genart_db &amp;lt;- genart %&amp;gt;% select(ID, Likes, Owner, Date, Text) %&amp;gt;% mutate(hashtags = str_extract_all(Text,patt) ) genart_db_table &amp;lt;- genart_db %&amp;gt;% unnest(cols = &amp;#34;hashtags&amp;#34;) %&amp;gt;% mutate(Year = year(Date), Month = month(Date), DayOfWeek = wday(Date), Day = day(Date), Hour = hour(Date)) genart_db_table %&amp;gt;% head() That will generate a rather large dataset</description>
    </item>
    
  </channel>
</rss>
