<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>music-observatory | Digital Music Observatory</title>
    <link>/tag/music-observatory/</link>
      <atom:link href="/tag/music-observatory/index.xml" rel="self" type="application/rss+xml" />
    <description>music-observatory</description>
    <generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>Daniel Antal, Reprex BV, © 2020 - 2021</copyright><lastBuildDate>Thu, 17 Jun 2021 08:10:00 +0200</lastBuildDate>
    <image>
      <url>/images/icon_hu39fbba359297d51029d2ed61d5776646_23693_512x512_fill_lanczos_center_2.png</url>
      <title>music-observatory</title>
      <link>/tag/music-observatory/</link>
    </image>
    
    <item>
      <title>New spotifyr R Package Release</title>
      <link>/post/2021-06-17-spotifyr-release/</link>
      <pubDate>Thu, 17 Jun 2021 08:10:00 +0200</pubDate>
      <guid>/post/2021-06-17-spotifyr-release/</guid>
      <description>

















&lt;figure id=&#34;figure-the-package-is-an-excellent-starting-to-point-for-r-newbies-to-try-their-hands-on-musicology-analysis-with-a-few-keystrokes-and-of-course-it-is-an-essential-part-of-the-research-infrastructure-of-musicology-worldwide-in-far-more-advanced-applications&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/package_screenshots/spotifyr_221.png&#34; data-caption=&#34;The package is an excellent starting to point for R newbies to try their hands on musicology analysis with a few keystrokes. And of course, it is an essential part of the research infrastructure of musicology worldwide in far more advanced applications.&#34;&gt;


  &lt;img src=&#34;/media/img/package_screenshots/spotifyr_221.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    The package is an excellent starting to point for R newbies to try their hands on musicology analysis with a few keystrokes. And of course, it is an essential part of the research infrastructure of musicology worldwide in far more advanced applications.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;I have been a very long-time user of Charlie Thomson’s &lt;a href=&#34;https://github.com/charlie86/spotifyr&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;spotifyr R package&lt;/a&gt;, which is probably the most used open-source music analytics software in the world.  It provides programmatic access to the Spotify Web API, which contains access to the former Echo Nest quantitative musicology engine.&lt;/p&gt;
&lt;p&gt;It is an essential part of the &lt;a href=&#34;https://music.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Digital Music Observatory’s&lt;/a&gt; streaming analysis and our &lt;a href=&#34;https://listenlocal.community/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Listen Local&lt;/a&gt; apps designed for our trustworthy AI experiments and independent artist services.  I am extremely proud to announce that after a very thorough modernization of the package’s exception handling, documentation, and code dependencies that I did in the last week, the package has passed again the peer-review standards and it is back on CRAN.&lt;/p&gt;
&lt;p&gt;The package is an excellent starting to point for R newbies to try their hands on musicology analysis with a few keystrokes. And of course, it is an essential part of the research infrastructure of musicology worldwide in far more advanced applications.&lt;/p&gt;
&lt;h2 id=&#34;getting-started&#34;&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;You should start with the &lt;a href=&#34;https://github.com/charlie86/spotifyr&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;README&lt;/a&gt; and get your Spotify Web API access tokens to get started.&lt;/p&gt;
&lt;h3 id=&#34;what-was-the-beatles-favorite-key&#34;&gt;What Was the Beatles&#39; Favorite Key?&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;library(spotifyr)
beatles &amp;lt;- get_artist_audio_features(&#39;the beatles&#39;)
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;library(dplyr)
library(purrr)
library(knitr)

beatles %&amp;gt;% 
    count(key_mode, sort = TRUE) %&amp;gt;% 
    head(5) %&amp;gt;% 
    kable()
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left&#34;&gt;key_mode&lt;/th&gt;
&lt;th style=&#34;text-align:right&#34;&gt;n&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;C major&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;104&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;D major&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;98&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;G major&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;82&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;A major&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;76&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;E major&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;62&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;get-your-most-recently-played-tracks&#34;&gt;Get your most recently played tracks&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;library(lubridate)

get_my_recently_played(limit = 5) %&amp;gt;% 
    mutate(
        artist.name = map_chr(track.artists, function(x) x$name[1]),
        played_at = as_datetime(played_at)
        ) %&amp;gt;% 
    select(
      all_of(c(&amp;quot;track.name&amp;quot;, &amp;quot;artist.name&amp;quot;, &amp;quot;track.album.name&amp;quot;, &amp;quot;played_at&amp;quot;))
      ) %&amp;gt;% 
    kable()
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left&#34;&gt;track.name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;artist.name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;track.album.name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;played_at&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;A Case of You&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Tristen&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;A Case of You&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;2021-06-14 09:54:44&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Paper Cup&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Real Estate&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Paper Cup&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;2021-06-10 20:20:11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Wrong with You&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Tristen&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Wrong with You&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;2021-06-10 20:17:24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Animal - Edit&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;LUMP&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Animal&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;2021-06-10 20:13:21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Streets Of Your Town&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;DOPE LEMON&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Streets Of Your Town&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;2021-06-10 18:23:00&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;That&amp;rsquo;s about right&amp;hellip;&lt;/p&gt;
&lt;h3 id=&#34;find-your-all-time-favorite-artists&#34;&gt;Find Your All Time Favorite Artists&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;get_my_top_artists_or_tracks(type = &#39;artists&#39;, 
                             time_range = &#39;long_term&#39;, 
                             limit = 5) %&amp;gt;% 
    select(.data$name, .data$genres) %&amp;gt;% 
    rowwise %&amp;gt;% 
    mutate(genres = paste(.data$genres, collapse = &#39;, &#39;)) %&amp;gt;% 
    ungroup %&amp;gt;% 
    kable()
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left&#34;&gt;name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;genres&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Japanese Breakfast&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;art pop, bubblegrunge, eugene indie, indie pop, indie rock, philly indie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Haley Bonar&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;melancholia, stomp and holler&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Balthazar&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;belgian indie, belgian rock, dutch indie, dutch rock, ghent indie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Buildings Breeding&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;indie fuzzpop&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Angus &amp;amp; Julia Stone&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;australian indie folk, indie folk, stomp and holler&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;What could I say?  I travelled Australia listening only to Angus &amp;amp; Julia Stone, the Buildings Breeding have been with me since I discovered them on my first iPod, in one of the first podcasts, the Indiefeed. I created my Kickstarter account back in 2010 to support Haley Bonar&amp;rsquo;s third album. And the year before I was very much into Japanese Breakfast and Balthazar.&lt;/p&gt;
&lt;h3 id=&#34;find-your-favorite-tracks-at-the-moment&#34;&gt;Find your favorite tracks at the moment&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;get_my_top_artists_or_tracks(type = &#39;tracks&#39;, 
                             time_range = &#39;short_term&#39;, 
                             limit = 5) %&amp;gt;% 
    mutate(
        artist.name = map_chr(artists, function(x) x$name[1])
        ) %&amp;gt;% 
    select(name, artist.name, album.name) %&amp;gt;% 
    kable()
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left&#34;&gt;name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;artist.name&lt;/th&gt;
&lt;th style=&#34;text-align:left&#34;&gt;album.name&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Hot &amp;amp; Heavy&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Lucy Dacus&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Hot &amp;amp; Heavy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Sea Urchin&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Mystic Braves&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Sea Urchin&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Human&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Freedom Fry&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Human&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Hot Motion&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Temples&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Hot Motion&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Animal - Edit&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;LUMP&lt;/td&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Animal&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;whats-the-most-joyful-joy-division-song&#34;&gt;What&amp;rsquo;s the most joyful Joy Division song?&lt;/h3&gt;
&lt;p&gt;Let&amp;rsquo;s take a look at the audio feature has to be &lt;code&gt;valence&lt;/code&gt;, a measure of musical
positivity.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;joy &amp;lt;- get_artist_audio_features(&#39;joy division&#39;)
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&#34;language-r&#34;&gt;joy %&amp;gt;% 
    arrange(-valence) %&amp;gt;% 
    select(.data$track_name, .data$valence) %&amp;gt;% 
    head(5) %&amp;gt;% 
    kable()
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left&#34;&gt;track_name&lt;/th&gt;
&lt;th style=&#34;text-align:right&#34;&gt;valence&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Passover - 2020 Digital Master&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;0.946&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Passover - 2007 Remaster&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;0.941&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Colony - 2020 Digital Master&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;0.829&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Colony - 2007 Remaster&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;0.808&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left&#34;&gt;Atrocity Exhibition - 2020 Digital Master&lt;/td&gt;
&lt;td style=&#34;text-align:right&#34;&gt;0.790&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Now if only there was some way to plot joy…&lt;/p&gt;
&lt;h3 id=&#34;joyplot-of-the-emotional-rollercoasters-that-are-joy-divisions-albums&#34;&gt;Joyplot of the emotional rollercoasters that are Joy Division&amp;rsquo;s albums&lt;/h3&gt;


















&lt;figure id=&#34;figure-joyplot-of-the-emotional-rollercoasters-that-are-joy-divisions-albums&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/blogposts_2021/README-joyplot-1.png&#34; data-caption=&#34;Joyplot of the emotional rollercoasters that are Joy Division&amp;amp;rsquo;s albums&#34;&gt;


  &lt;img src=&#34;/media/img/blogposts_2021/README-joyplot-1.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    Joyplot of the emotional rollercoasters that are Joy Division&amp;rsquo;s albums
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;h2 id=&#34;sentify-a-shiny-app&#34;&gt;Sentify: A Shiny app&lt;/h2&gt;
&lt;p&gt;This &lt;a href=&#34;http://rcharlie.net/sentify/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;app&lt;/a&gt;, powered by spotifyr, allows
you to visualize the energy and valence (musical positivity) of all of
Spotify&amp;rsquo;s artists and playlists.&lt;/p&gt;
&lt;h2 id=&#34;dope-stuff-other-people-have-done-with-spotifyr&#34;&gt;Dope Stuff Other People Have Done with spotifyr&lt;/h2&gt;
&lt;p&gt;The coolest thing about making this package has definitely been seeing
all the awesome stuff other people have done with it. Here are a few
examples:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://msmith7161.github.io/what-is-speechiness/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Exploring the Spotify API with R: A tutorial for beginners, by a beginner&lt;/a&gt;, Mia Smith&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://caitlinhudon.com/2017/12/22/blue-christmas/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Blue Christmas: A data-driven search for the most depressing Christmas song&lt;/a&gt;, Caitlin
Hudon&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://rr.sapo.pt/especial/112355/sente-se-triste-quando-ouve-amar-pelos-dois-nao-e-o-unico&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Sente-se triste quando ouve “Amar pelos dois”? Não é o único (Do you feel sad when you hear “Love for both?” You’re not alone)&lt;/a&gt;,
Rui Barros, Rádio Renascença&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://towardsdatascience.com/angriest-death-grips-data-anger-502168c1c2f0&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Using Data to Find the Angriest Death Grips Song&lt;/a&gt;,
Evan Oppenheimer&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://twitter.com/WireMonkey/status/1009915034246565891?s=19&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hierarchical clustering of David Bowie records&lt;/a&gt;,
Alyssa Goldberg&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://medium.com/@simranvatsa5/taylor-f656e2a09cc3&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;tayloR&lt;/a&gt;, Simran
Vatsa&lt;/p&gt;
&lt;h2 id=&#34;our-work-with-spotifyr&#34;&gt;Our Work with spotifyR&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://dataandlyrics.com/post/2021-06-08-teach-learning-machines/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Trustworthy AI: Check Where the Machine Learning Algorithm is Learning From&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://dataandlyrics.com/post/2021-05-16-recommendation-outcomes/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Recommendation Systems: What can Go Wrong with the Algorithm?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://dataandlyrics.com/post/2021-03-25-listen-slovak/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Feasibility Study On Promoting Slovak Music In Slovakia &amp;amp; Abroad&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://dataandlyrics.com/post/2020-10-24-forgetify_pop_october/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Forgetify: Popular Music That Nobody Listens To&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A key mission of our &lt;a href=&#34;https://music.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Digital Music Observatory&lt;/a&gt;, which is our modern, subjective approach on how the future European Music Observatory should look like, is to not only to provide high-quality data on the music economy, the diversity of music, and the audience of music, but also on metadata.  The quality and availability, interoperability of metadata (information about how the data should be used) is key to build trustworthy AI systems. We rely on &lt;a href=&#34;https://github.com/charlie86/spotifyr&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;spotifyr&lt;/a&gt; to fulfil this mission.&lt;/p&gt;
&lt;p&gt;*Join our open collaboration Music Data Observatory team as a &lt;a href=&#34;https://music.dataobservatory.eu/author/new-curators/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data curator&lt;/a&gt;, &lt;a href=&#34;https://music.dataobservatory.eu/author/new-developers/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;developer&lt;/a&gt; or &lt;a href=&#34;https://music.dataobservatory.eu/author/observatory-business-associate/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;business developer&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>EU Datathon 2021</title>
      <link>/project/eu-datathon_2021/</link>
      <pubDate>Wed, 12 May 2021 18:09:00 +0200</pubDate>
      <guid>/project/eu-datathon_2021/</guid>
      <description>&lt;p&gt;Reprex, a Dutch start-up enterprise formed to utilize open source software and open data, is looking for partners in an agile, open collaboration to win at least one of the three EU Datathon Prizes. We are looking for policy partners, academic partners and a consultancy partner. Our project is based on agile, open collaboration with three types of contributors.&lt;/p&gt;
&lt;p&gt;With our competing prototypes we want to show that we have a research automation technology that can find open data, process it and validate it into high-quality business, policy or scientific indicators, and release it with daily refreshments in a modern API.&lt;/p&gt;
&lt;p&gt;We are looking for institutions to challenge us with their data problems, and sponsors to increase our capacity. Over then next 5 months, we need to find a sustainable business model for a high-quality and open alternative to other public data programs.&lt;/p&gt;
&lt;h2 id=&#34;the-eu-datathon-2021-challenge&#34;&gt;The EU Datathon 2021 Challenge&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;To take part, you should propose the development of an application that links and uses open datasets.&lt;/em&gt; - our &lt;a href=&#34;https://music.dataobservatory.eu/#contributors&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data curator team&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;Your application &amp;hellip; is also expected to find suitable new approaches and solutions to help Europe achieve important goals set by the European Commission through the use of open data.&lt;/em&gt;” - this application is developed by our &lt;a href=&#34;https://greendeal.dataobservatory.eu/#contributors&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;technology contributors&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;Your application should showcase opportunities for concrete business models or social enterprises.&lt;/em&gt; - our &lt;a href=&#34;https://economy.dataobservatory.eu/#contributors&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;service development team&lt;/a&gt; is working to make this happen!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We use open source software and open data. The applications are hosted on the cloud resources of &lt;a href=&#34;#reprex&#34;&gt;Reprex&lt;/a&gt;, an early-stage technology startup currently building a viable, open-source, open-data business model to create reproducible research products.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We are working together with experts in the domain as curators (check out our guidelines if you want to join: &lt;a href=&#34;https://curators.dataobservatory.eu/data-curators.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Data Curators: Get Inspired!&lt;/a&gt;).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our development team works on an open collaboration basis. Our indicator R packages, and our services are developed together with &lt;a href=&#34;https://music.dataobservatory.eu/author/ropengov/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;rOpenGov&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;mission-statement&#34;&gt;Mission statement&lt;/h2&gt;
&lt;p&gt;We want to win an &lt;a href=&#34;https://op.europa.eu/en/web/eudatathon&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;EU Datathon prize&lt;/a&gt; by processing the vast, already-available governmental and scientific open data made usable for policy-makers, scientific researchers, and business researcher end-users.&lt;/p&gt;
&lt;p&gt;“&lt;em&gt;To take part, you should propose the development of an application that links and uses open datasets. Your application should showcase opportunities for concrete business models or social enterprises. It is also expected to find suitable new approaches and solutions to help Europe achieve important goals set by the European Commission through the use of open data.&lt;/em&gt;”&lt;/p&gt;
&lt;p&gt;We aim to win at least one first prize in the EU Datathon 2021. We are contesting &lt;strong&gt;all three&lt;/strong&gt; challenges, which are related to the EU’s official strategic policies for the coming decade.&lt;/p&gt;
&lt;h2 id=&#34;challenge-1-a-european-grean-deel&#34;&gt;Challenge 1: A European Grean Deel&lt;/h2&gt;


















&lt;figure id=&#34;figure-our-green-deal-data-observatory-connects-socio-economic-and-environmental-data-to-help-understanding-and-combating-climate-change&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/observatory_screenshots/GD_Observatory_opening_page.png&#34; data-caption=&#34;Our Green Deal Data Observatory connects socio-economic and environmental data to help understanding and combating climate change.&#34;&gt;


  &lt;img src=&#34;/media/img/observatory_screenshots/GD_Observatory_opening_page.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    Our Green Deal Data Observatory connects socio-economic and environmental data to help understanding and combating climate change.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;Challenge 1: &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/european-green-deal_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;A European Green Deal&lt;/a&gt;, with a particular focus on the &lt;a href=&#34;https://ec.europa.eu/commission/presscorner/detail/en/ip_20_2323&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;The European Climate Pact&lt;/a&gt;, the &lt;a href=&#34;https://ec.europa.eu/info/food-farming-fisheries/farming/organic-farming/organic-action-plan_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Organic Action Plan&lt;/a&gt;, and the &lt;a href=&#34;https://ec.europa.eu/commission/presscorner/detail/en/IP_21_111&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;New European Bauhaus&lt;/a&gt;, i.e., mitigation strategies.&lt;/p&gt;
&lt;p&gt;Climate change and environmental degradation are an existential threat to Europe and the world. To overcome these challenges, the European Union created the European Green Deal strategic plan, which aims to make the EU’s economy sustainable by turning climate and environmental challenges into opportunities and making the transition just and inclusive for all.&lt;/p&gt;
&lt;p&gt;Our &lt;a href=&#34;http://greendeal.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Green Deal Data Observatory&lt;/a&gt; is a modern reimagination of existing ‘data observatories’; currently, there are over 70 permanent international data collection and dissemination points. One of our objectives is to understand why the dozens of the EU’s observatories do not use open data and reproducible research. We want to show that open governmental data, open science, and reproducible research can lead to a higher quality and faster data ecosystem that fosters growth for policy, business, and academic data users.&lt;/p&gt;
&lt;p&gt;We provide high quality, tidy data through a modern API which enables data flows between public and proprietary databases. We believe that introducing Open Policy Analysis standards with open data, open-source software, and research automation, can help the Green Deal policymaking process. Our collaboration is open for individuals, citizens scientists, research institutes, NGOS, and companies.&lt;/p&gt;
&lt;h2 id=&#34;challenge-2-an-economy-that-works-for-people&#34;&gt;Challenge 2: An economy that works for people&lt;/h2&gt;


















&lt;figure id=&#34;figure-our-economy-data-observatory-will-focus-on-competition-small-and-medium-sized-enterprizes-and-robotization&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/observatory_screenshots/edo_opening_page.jpg&#34; data-caption=&#34;Our Economy Data Observatory will focus on competition, small and medium sized enterprizes and robotization.&#34;&gt;


  &lt;img src=&#34;/media/img/observatory_screenshots/edo_opening_page.jpg&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    Our Economy Data Observatory will focus on competition, small and medium sized enterprizes and robotization.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;Challenge 2: &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/economy-works-people_en#:~:text=Individuals%20and%20businesses%20in%20the,needs%20of%20the%20EU%27s%20citizens.&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;An economy that works for people&lt;/a&gt;, with a particular focus on the &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/economy-works-people/internal-market_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Single market strategy&lt;/a&gt;, and particular attention to the strategy’s goals of 1. Modernising our standards system, 2. Consolidating Europe’s intellectual property framework, and 3. Enabling the balanced development of the collaborative economy strategic goals.&lt;/p&gt;
&lt;p&gt;Big data and automation create new inequalities and injustices and have the potential to create a jobless growth economy. Our &lt;a href=&#34;https://economy.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Economy Data Observatory&lt;/a&gt; is a fully automated, open source, open data observatory that produces new indicators from open data sources and experimental big data sources, with authoritative copies and a modern API.&lt;/p&gt;
&lt;p&gt;Our observatory monitors the European economy to protect consumers and small companies from unfair competition, both from data and knowledge monopolization and robotization. We take a critical Small and Medium-Sized Enterprises (SME)-, intellectual property, and competition policy point of view of automation, robotization, and the AI revolution on the service-oriented European social market economy.&lt;/p&gt;
&lt;p&gt;We would like to create early-warning, risk, economic effect, and impact indicators that can be used in scientific, business, and policy contexts for professionals who are working on re-setting the European economy after a devastating pandemic in the age of AI. We are particularly interested in designing indicators that can be early warnings for killer acquisitions, algorithmic and offline discrimination against consumers based on nationality or place of residence, and signs of undermining key economic and competition policy goals. Our goal is to help small and medium-sized enterprises and start-ups to grow, and to furnish data that encourages the financial sector to provide loans and equity funds for their growth.&lt;/p&gt;
&lt;h2 id=&#34;challenge-3-a-europe-fit-for-the-digital-age&#34;&gt;Challenge 3: A Europe fit for the digital age&lt;/h2&gt;


















&lt;figure id=&#34;figure-our-digital-music-observatory-is-not-only-a-demo-of-the-european-music-observatory-but-a-testing-ground-for-data-governance-digital-servcies-act-and-trustworthy-ai-problems&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/observatory_screenshots/dmo_opening_screen.png&#34; data-caption=&#34;Our Digital Music Observatory is not only a demo of the European Music Observatory, but a testing ground for data governance, Digital Servcies Act, and trustworthy AI problems.&#34;&gt;


  &lt;img src=&#34;/media/img/observatory_screenshots/dmo_opening_screen.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    Our Digital Music Observatory is not only a demo of the European Music Observatory, but a testing ground for data governance, Digital Servcies Act, and trustworthy AI problems.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;Challenge 3: &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/europe-fit-digital-age_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;A Europe fit for the digital age&lt;/a&gt;, with a particular focus &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/europe-fit-digital-age/excellence-trust-artificial-intelligence_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Artificial Intelligence&lt;/a&gt;, the &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/europe-fit-digital-age/european-data-strategy_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;European Data Strategy&lt;/a&gt;, the &lt;a href=&#34;https://ec.europa.eu/info/strategy/priorities-2019-2024/europe-fit-digital-age/digital-services-act-ensuring-safe-and-accountable-online-environment_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Digital Services Act&lt;/a&gt;, &lt;a href=&#34;https://digital-strategy.ec.europa.eu/en/policies/digital-skills-and-jobs&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Digital Skills&lt;/a&gt; and &lt;a href=&#34;https://digital-strategy.ec.europa.eu/en/policies/connectivity&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Connectivity&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&#34;https://music.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Digital Music Observatory&lt;/a&gt; (DMO) is a fully automated, open source, open data observatory that creates public datasets to provide a comprehensive view of the European music industry. It provides high-quality and timely indicators in all four pillars of the planned official European Music Observatory as a modern, open source and largely open data-based, automated, API-supported alternative solution for this planned observatory. The insight and methodologies we are refining in the DMO are applicable and transferable to about 60 other data observatories funded by the EU which do not currently employ governmental or scientific open data.&lt;/p&gt;
&lt;p&gt;Music is one of the most data-driven service industries where most sales are currently executed by AI-driven autonomous systems that influence market shares and intellectual property remuneration. We provide a template that enables making these AI-driven systems accountable and trustworthy, with the goal of re-balancing the legitimate interests of creators, distributors, and consumers. Within Europe, this new balance will be an important use case of the European Data Strategy and the Digital Services Act.&lt;/p&gt;
&lt;p&gt;The DMO is a fully functional service that can serve as a testing ground of the European Data Strategy. It can showcase the ways in which the music industry is affected by the problems that the Digital Services Act and European Trustworthy AI initiatives attempt to regulate. It is being built in open collaboration with national music stakeholders, NGOs, academic institutions, and industry groups.&lt;/p&gt;
&lt;p&gt;Our Product/Market Fit was validated in the world’s 2nd ranked university-backed incubator program, the &lt;a href=&#34;https://music.dataobservatory.eu/post/2020-09-25-yesdelft-validation/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Yes!Delft AI Validation Lab&lt;/a&gt;. We are currently developing this project with the help of the &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/automated-music-observatory/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;JUMP European Music Market Accelerator&lt;/a&gt; program.&lt;/p&gt;
&lt;h2 id=&#34;problem-statement&#34;&gt;Problem Statement&lt;/h2&gt;
&lt;p&gt;The EU has an 18-year-old open data regime and it makes public taxpayer-funded data in the values of tens of billions of euros per year; the Eurostat program alone handles 20,000 international data products, including at least 5,000 pan-European environmental indicators.&lt;/p&gt;
&lt;p&gt;As open science principles gain increased acceptance, scientific researchers are making hundreds of thousands of valuable datasets public and available for replication every year.&lt;/p&gt;
&lt;p&gt;The EU, the OECD, and UN institutions run around 100 data collection programs, so-called ‘data observatories’ that more or less avoid touching this data, and buy proprietary data instead. Annually, each observatory spends between 50 thousand and 3 million EUR on collecting untidy and proprietary data of inconsistent quality, while never even considering open data.&lt;/p&gt;


















&lt;figure id=&#34;figure-our-automated-data-observatories-are-modern-reimaginations-of-the-existing-observatories-that-do-not-use-open-data-and-research-automation&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/observatory_screenshots/observatory_collage_16x9_800.png&#34; data-caption=&#34;Our automated data observatories are modern reimaginations of the existing observatories that do not use open data and research automation.&#34;&gt;


  &lt;img src=&#34;/media/img/observatory_screenshots/observatory_collage_16x9_800.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption data-pre=&#34;Figure &#34; data-post=&#34;:&#34; class=&#34;numbered&#34;&gt;
    Our automated data observatories are modern reimaginations of the existing observatories that do not use open data and research automation.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;The problem with the current EU data strategy is that while it produces enormous quantities of valuable open data, in the absence of common basic data science and documentation principles, it seems often cheaper to create new data than to put the existing open data into shape.&lt;/p&gt;
&lt;p&gt;This is an absolute waste of resources and efforts. With a few R packages and our deep understanding of advanced data science techniques, we can create valuable datasets from unprocessed open data. In most domains, we are able to repurpose data originally created for other purposes at a historical cost of several billions of euros, converting these unused data assets into valuable datasets that can replace tens of millions’ worth of proprietary data.&lt;/p&gt;
&lt;p&gt;What we want to achieve with this project – and we believe such an accomplishment would merit one of the first prizes - is to add value to a significant portion of pre-existing EU open data (for example, available on &lt;a href=&#34;https://data.europa.eu/data/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data.europa.eu/data&lt;/a&gt;) by re-processing and integrating them into a modern, tidy database with an API access, and to find a business model that emphasises a triangular use of data in 1. business, 2. science and 3. policy-making. Our mission is to modernize the concept of &lt;code&gt;data observatories.&lt;/code&gt;&lt;/p&gt;
&lt;h2 id=&#34;our-solution&#34;&gt;Our solution&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;We are empowering data curators with reproducible research solutions to create high-quality, rigorously tested original datasets from low quality, not validated, not tidy open data. We help them to design meaningful business, policy or scientific indicators and provide them with a software and API to keep the data up-to-date. We help them deposit a copy of the authoritative, uncompromised dataset onto Zenodo, the EU’s data repository, with a DOI or new DOI version.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We create a research workflow that periodically (daily, weekly, monthly, quarterly or annually) collects, corrects and re-processes the data. We use peer-reviewed statistical software and unit-tests to make sure that the data is sound.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;


















&lt;figure id=&#34;figure-panning-out-gold-from-muddy-open-sources---with-automation-technology&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/slides/gold_panning_slide_notitle.png&#34; data-caption=&#34;Panning out gold from muddy open sources - with automation technology.&#34;&gt;


  &lt;img src=&#34;/media/img/slides/gold_panning_slide_notitle.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Panning out gold from muddy open sources - with automation technology.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;ol start=&#34;3&#34;&gt;
&lt;li&gt;
&lt;p&gt;We add value with correcting open (and proprietary!) data problems that make open data hard to use, and proprietary, in-house data hard to re-use.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://regions.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;regions&lt;/a&gt; corrects inconsistent geographical coding. Eurostat has no mandate to correct geographical coding, and member states do not historically adjust their data. With many thousands of parish, county, region, province, state boundary changes within states, regional and metropolitian area datasets are not usable without our software.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://iotables.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;iotables&lt;/a&gt; puts extremely complex national accounts data into actually useful environmental and economic impact indicators. Instead of working with each country separately, our standardized system can calculate direct and indirect effects, as well as multipliers for every European country that works in the European statistical framework (EU member states, EEA, UK, member candidates.)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://retroharmonize.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;retroharmonize&lt;/a&gt; connects cross-sectional surveys with non-European countries, puts pan-European surveys into time series, and corrects regional subsamples. We are creating new indicators from Eurobarometer, Afrobarometer, Arab Barometer, and standardized CAP surveys, as well as other harmonized surveys. We help design surveys that can utilize data from already existing, openly available surveys.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We place the authoritative copy to a data repository (Zenodo or Dataverse), automatically document the data, and make it available in a modern API for SQL queries or CSV downloads.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We present the data with commentary and blog posts from our curators (see: &lt;a href=&#34;http://greendeal.dataobservatory.eu/post/2021-04-23-belgium-flood-insurance/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Is Drought Risk Uninsurable?&lt;/a&gt; - solidarity and climate change in Belgium) and contributors on a semi-automatically refreshed, open source web portal.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We are perfecting the agile open collaboration model in a triangular setting, where corporate users, scientific researchers, public and non-governmental policy makers, and even citizen scientists can work around a single data ecoystem.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We are validating a business model that allows the commercial, scientific, and policy use of re-processed, high quality data products made from open and shared data.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
</description>
    </item>
    
    <item>
      <title>Our Music Observatory in the Jump European Music Market Accelerator: Meet the 2021 Fellows and their Tutors</title>
      <link>/post/2021-03-04-jump-2021/</link>
      <pubDate>Thu, 04 Mar 2021 15:00:00 +0200</pubDate>
      <guid>/post/2021-03-04-jump-2021/</guid>
      <description>

















&lt;figure &gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/img/logos/JUMP_Banner_851x315.png&#34; &gt;


  &lt;img src=&#34;/img/logos/JUMP_Banner_851x315.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;



&lt;/figure&gt;

&lt;p&gt;According to the announcement of JUMP, the European Music Market Accelerator, after a careful screening of all applications received, the selection committee composed of all JUMP board members has selected the most promising ideas and projects to be developed together with renowned tutors for this 2021 fellowship.&lt;/p&gt;
&lt;p&gt;For nine months, the 20 fellows living in many European countries will develop their innovative projects, while receiving a comprehensive 360° training. In addition to specialised workshops by highly qualified experts, each fellow will receive one-on-one tutoring sessions from the most renowned music professionals coming from all over Europe.&lt;/p&gt;
&lt;p&gt;The 20 selected projects cover a great variety of urgent needs faced within the music sector.
They will:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;help fostering social change with projects focusing on diversity in the industry, more fairness and
transparency as well as raising awareness on timely issues.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;enhance technological development with projects using blockchain, immersive sound and VR and AR.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;build bridges between different key actors of the ecosystem.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&#34;/documents/JUMP2021_Annoucement_Press_Release_040321.pdf&#34; target=&#34;_blank&#34;&gt;Download the entire JUMP press release&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Reprex&amp;rsquo;s project, the automated &lt;a href=&#34;https://reprex.nl/project/music-observatory/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Demo Music Observatory&lt;/a&gt; will be represented by Daniel Antal, co-founder of Reprex among other building bridges projects. This project offers a different approach to the planned European Music Observatory based on the principles of open collaboration, which allows contributions from small organizations and even individuals, and which provides higher levels of quality in terms of auditability, timeliness, transparency and general ease of use. Our open collaboration approach allows to power trustworthy, ethical AI systems like our &lt;a href=&#34;https://reprex.nl/project/listen-local/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Listen Local&lt;/a&gt; that we started out from Slovakia with the support of the Slovak Arts Council.&lt;/p&gt;


















&lt;figure id=&#34;figure-jump-fellows-building-bridges-between-different-key-actors-of-the-ecosystem&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/img/reprex/building_bridges.png&#34; data-caption=&#34;JUMP fellows building bridges between different key actors of the ecosystem.&#34;&gt;


  &lt;img src=&#34;/img/reprex/building_bridges.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    JUMP fellows building bridges between different key actors of the ecosystem.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;Apart from our &lt;a href=&#34;https://reprex.nl/project/music-observatory/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Demo Music Observatory&lt;/a&gt; the build bridges section &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/groovly/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Groovly&lt;/a&gt; with Martin Zenzerovich, &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/from-play-to-rec/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;From Play To Rec&lt;/a&gt; by Jeremy Dunne, &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/hajde-radio/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hajde Radio&lt;/a&gt; by Thibaut Boudaud, &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/lowdee/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;LowDee&lt;/a&gt; by Alex Davidson and &lt;a href=&#34;https://www.jumpmusic.eu/fellow2021/uno-hu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ONO-HU!&lt;/a&gt; by Gina Akers.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Meet all the &lt;a href=&#34;https://www.jumpmusic.eu/fellows/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;JUMP 2021 Fellows&lt;/a&gt;, including the technology and social change professionals!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Reprex is a start-up company based in the Netherlands and the United States that validated its early products in the &lt;a href=&#34;post/2020-09-25-yesdelft-validation/&#34;&gt;Yes!Delft AI+Blockchain Lab&lt;/a&gt; in the Hague. In 2021 we joined the Dutch AI Coalition &amp;ndash; &lt;a href=&#34;post/2021-02-16-nlaic/&#34;&gt;NL AIC&lt;/a&gt; and requested membership in the European AI Alliance. Reprex is committed to applying reproducible in an open collaboration with our business, scientific, policy and civil society partners, and facilitate the use of open data and open-source software. Many fellows in the program are connected to other regions, like North America and Australia &amp;ndash; because music is one of the most globalized industries and forms of art in the world!  Reprex is a startup based in the Netherlands and the United States, and we are very excited to collaborate with our peers in new European territories, and in Canada and Australia.&lt;/p&gt;






  



  
  











&lt;figure id=&#34;figure-hope-to-meet-you-in-these-great-events---maybe-not-only-online&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/post/2021-03-04-jump-2021/JUMP_events_2021_huc4ee3afec7ca5a36e31b155ecc339395_183968_2000x2000_fit_lanczos_2.png&#34; data-caption=&#34;Hope to meet you in these great events - maybe not only online!&#34;&gt;


  &lt;img data-src=&#34;/post/2021-03-04-jump-2021/JUMP_events_2021_huc4ee3afec7ca5a36e31b155ecc339395_183968_2000x2000_fit_lanczos_2.png&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;1511&#34; height=&#34;611&#34;&gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Hope to meet you in these great events - maybe not only online!
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;Further links:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.facebook.com/fromplaytorec/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;From Play to Rec&lt;/a&gt; on Facebook&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://hajde.fr/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;HAJDE&lt;/a&gt; FR/EN&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Music Streaming: Is It a Level Playing Field?</title>
      <link>/post/2021-02-24-music-level-playing-field/</link>
      <pubDate>Tue, 23 Feb 2021 21:23:00 +0200</pubDate>
      <guid>/post/2021-02-24-music-level-playing-field/</guid>
      <description>&lt;p&gt;Our article, &lt;a href=&#34;https://www.competitionpolicyinternational.com/music-streaming-is-it-a-level-playing-field/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Streaming: Is It a Level Playing Field?&lt;/a&gt; is published in the February 2021 issue of CPI Antitrust Chronicle, which is fully devoted to competition policy issues in the music industry.&lt;/p&gt;
&lt;p&gt;The dramatic growth of music streaming over recent years is potentially very positive. Streaming provides consumers with low cost, easy access to a wide range of music, while it provides music creators with low cost, easy access to a potentially wide audience. But many creators are unhappy about the major streaming platforms. They consider that they act in an unfair way, create an unlevel playing field and threaten long-term creativity in the music industry.&lt;/p&gt;
&lt;p&gt;Our paper describes and assesses the basis for one element of these concerns, competition between recordings on streaming platforms. We argue that fair competition is restricted by the nature of the remuneration arrangements between creators and the streaming platforms, the role of playlists, and the strong negotiating power of the major labels. It concludes that urgent consideration should be given to a user-centric payment system, as well as greater transparency of the factors underpinning playlist creation and of negotiated agreements.&lt;/p&gt;
&lt;p&gt;You can read the entire issue and the full text of our article on &lt;a href=&#34;https://www.competitionpolicyinternational.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Competition Policy International&lt;/a&gt; in &lt;a href=&#34;https://www.competitionpolicyinternational.com/wp-content/uploads/2021/02/2-Music-Streaming-Is-It-a-Level-Playing-Field-By-Daniel-Antal-Amelia-Fletcher-14-Peter-L.-Ormosi.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;pdf&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Daniel Antal, co-founder of Reprex Was Selected into the 2021 Fellowship Program of the European Music Market Accelerator</title>
      <link>/post/2021-02-22-jump/</link>
      <pubDate>Mon, 22 Feb 2021 21:23:00 +0200</pubDate>
      <guid>/post/2021-02-22-jump/</guid>
      <description>&lt;p&gt;Daniel Antal, co-founder of Reprex, and co-editor of Data &amp;amp; Lyrics, was selected into 2021 Fellowship program of &lt;a href=&#34;https://www.jumpmusic.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;JUMP, the European Music Market Accelerator&lt;/a&gt;. Jump provides a framework for music professionals to develop innovative business models, encouraging the music sector to work on a transnational level.  The European Music Market Accelerator composed of MaMA Festival and Convention, UnConvention, MIL, Athens Music Week, Nouvelle Prague and Linecheck support him in the development of our two, interrelated projects over the next nine months.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Our &lt;a href=&#34;https://reprex.nl/project/music-observatory/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Demo Music Observatory&lt;/a&gt; is a demo version of the European Music Observatory based on open data, open source, automated research in open collaboration with music stakeholders. We hope that we can further develop our business model and find new users, and help the recovery of the festival and live music segment.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reprex.nl/project/listen-local/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Listen Local&lt;/a&gt; is our AI system that validated third party music AI, such as Spotify&amp;rsquo;s or YouTube&amp;rsquo;s recommendation systems, and provides trustworthy, accountable, transparent alternatives for the European music industry. We hope to expand our pilot project from Slovakia to several European countries in 2021.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Reprex is a start-up company based in the Netherlands and the United States that validated its early products in the &lt;a href=&#34;post/2020-09-25-yesdelft-validation/&#34;&gt;Yes!Delft AI+Blockchain Lab&lt;/a&gt; in the Hague. In 2021 we joined the Dutch AI Coalition &amp;ndash; &lt;a href=&#34;post/2021-02-16-nlaic/&#34;&gt;NL AIC&lt;/a&gt; and requested membership in the European AI Alliance.&lt;/p&gt;
&lt;p&gt;Reprex is committed to applying reproducible in an open collaboration with our business, scientific, policy and civil society partners, and facilitate the use of open data and open-source software.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Ensuring the Visibility and Accessibility of European Creative Content on the World Market: The Need for Copyright Data Improvement in the Light of New Technologies</title>
      <link>/post/2021-02-13-european-visibility/</link>
      <pubDate>Sat, 13 Feb 2021 18:10:00 +0200</pubDate>
      <guid>/post/2021-02-13-european-visibility/</guid>
      <description>&lt;p&gt;The majority of music sales in the world is driven by AI-algorithm powered robots that create personalized playlists, recommendations and help programming radio music streams or festival lineups. It is critically important that an artist’s work is documented, described in a way that the algorithm can work with it.&lt;/p&gt;
&lt;p&gt;In our research paper – soon to be published – made for the Listen Local Initiative we found that 15% of Dutch, Estonian, Hungarian, or Slovak artists had no chance to be recommended, and they usually end up on &lt;a href=&#34;post/2020-11-17-recommendation-analysis/&#34;&gt;Forgetify&lt;/a&gt;, an app that lists never-played songs of Spotify. In another project with rights management organizations, we found that about half of the rightsholders are at risk of not getting all their royalties from the platforms because of poor documentation.&lt;/p&gt;
&lt;p&gt;But how come that distributors give streaming platforms songs that are not properly documented?  What sort of information is missing for the European repertoire’s visibility?  Reprex is exploring this problem in a practical cooperation with SOZA, the Slovak Performing and Mechanical Rights Society, and in an academic cooperation that involves leading researchers in the field. A manuscript co-authored Martin Senftleben, director of the &lt;a href=&#34;https://www.ivir.nl/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Institute for Information Law&lt;/a&gt; in Amsterdam, and eminent researchers in copyright law and music economics, Reprex’s co-founder makes the case that Europe must invest public money to resolve this problem, because in the current scenario, the documentation costs of a song exceed the expected income from streaming platforms.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In the European Strategy for Data, the European Commission highlighted the EU’s ambition to acquire a leading role in the data economy. At the same time, the Commission conceded that the EU would have to increase its pools of quality data available for use and re-use. In the creative industries, this need for enhanced data quality and interoperability is particularly strong. Without data improvement, unprecedented opportunities for monetising the wide variety of EU creative and making this content available for new technologies, such as artificial intelligence training systems, will most probably be lost. The problem has a worldwide dimension. While the US have already taken steps to provide an integrated data space for music as of 1 January 2021, the EU is facing major obstacles not only in the field of music but also in other creative industry sectors. Weighing costs and benefits, there can be little doubt that new data improvement initiatives and sufficient investment in a better copyright data infrastructure should play a central role in EU copyright policy. A trade-off between data harmonisation and interoperability on the one hand, and transparency and accountability of content recommender systems on the other, could pave the way for successful new initiatives. &lt;a href=&#34;https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3785272&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Download the manuscript from SSRN&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Our &lt;a href=&#34;post/2020-12-17-demo-slovak-music-database/&#34;&gt;Slovak Demo Music Database&lt;/a&gt; project is a best example for this. We started systematically collect publicly available information from Slovak artists (in our write-in process) and ask them to give GDPR-protected further data (in our opt-in process) to create a comprehensive database that can help recommendation engines as well as market-targeting or educational AI apps.&lt;/p&gt;
&lt;p&gt;We believe that one of the problems of current AI algorithms that they solely or almost only work with English language documentation, putting other, particularly small language repertoires at risk of being buried below well-documented music mainly arriving from the United States.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;We are looking for rightsholders and their organizations, artists,
researchers to work with us to find out how we can increase the visibility of European music.&lt;/em&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Future Audience: Size Of Music Discovery Age Populations In Europe</title>
      <link>/post/2020-11-20-music-discovery-population/</link>
      <pubDate>Fri, 20 Nov 2020 15:10:00 +0200</pubDate>
      <guid>/post/2020-11-20-music-discovery-population/</guid>
      <description>&lt;p&gt;There is various global and national research available on the music discovery demography.  People usually discover new music in their young age as they are forming their own personal identity with their peer group.  This process mainly happens in the school, where similarly aged, educated young people spend much of their day together.&lt;/p&gt;
&lt;p&gt;The music discovery phase is strongly related to the time when most people get their music education: their skills to listen to music, play music or sing, and to compose new music. Investment into music education pays of in later age: people with more diverse music education, for example, with the ability to play music, tend to visit concerts more or discover more music in later life stages.&lt;/p&gt;








  











&lt;figure id=&#34;figure-the-annual-growth-top-chart-and-total-growth-lower-chart-of-the-15-24-years-old-population-in-select-european-countries&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/img/comparative/music_discovery_population.png&#34; data-caption=&#34;The annual growth (top chart) and total growth (lower chart) of the 15-24 years-old population in select European countries.&#34;&gt;


  &lt;img src=&#34;/media/img/comparative/music_discovery_population.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    The annual growth (top chart) and total growth (lower chart) of the 15-24 years-old population in select European countries.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;For practical reasons and supported by academic research, we chose the age group 15-24 as the key age group for music discovery.  We placed the national population of the music discovery age group in the &lt;a href=&#34;https://data.music.dataobservatory.eu/music-society.html#audiences&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music &amp;amp; Society&lt;/a&gt; pillar of the Demo Music Observatory.&lt;/p&gt;
&lt;p&gt;The changes across Europe are dramatic: in Latvia and the Baltic states, the music discovery age population decreased by 60% since the countries (re-)gained independence in 1991. Musicians and their organizations must work hard in these countries on developing export strategies if they want to maintain the market and audience of their music.&lt;/p&gt;
&lt;p&gt;Some European countries, for example, the Netherlands and Turkey have significantly increased their future audiences. In Turkey this is mainly related to population growth, in the Netherlands to immigration. Countries with a growing young population have a strong position for their music business.&lt;/p&gt;
&lt;p&gt;Not all lost in the Baltics and other countries where the &lt;code&gt;music discovery age population &lt;/code&gt; is shrinking.  Much of the lost young population migrated to the United Kingdom and other parts of Europe. If artists and their association in these countries find a way to connect with these new diaspora, their market loss will be far less dramatic. Connecting to the diaspora is the most natural way to start exporting new music.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Get the data from the &lt;a href=&#34;https://data.music.dataobservatory.eu/music-society.html#audiences&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Demo Music Observatory&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Earlier this year we introduced some in-depth comparison of music audiences in the &lt;a href=&#34;https://ceereport2020.ceemid.eu/audience.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Chapter 2&lt;/a&gt;. Central European Music Industry Report.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;Photo credit &lt;a href=&#34;https://commons.wikimedia.org/wiki/File:TeenStar_2013_Winner.jpg&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;LauraMayM&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Feasibility Study For The Establishment Of A European Music Observatory &amp; The Demo Observatory</title>
      <link>/post/2020-11-16-european-music-observatory-feasibility/</link>
      <pubDate>Mon, 16 Nov 2020 08:03:00 +0200</pubDate>
      <guid>/post/2020-11-16-european-music-observatory-feasibility/</guid>
      <description>&lt;p&gt;&lt;em&gt;The &lt;a href=&#34;https://op.europa.eu/en/publication-detail/-/publication/a756542a-249d-11eb-9d7e-01aa75ed71a1/language-en/format-PDF/source-171307257&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Feasibility study for the establishment of a European Music Observatory&lt;/a&gt; was published on 13 November.  Our private observatory, CEEMID was consulted in the creation of the Feasibility Study, and some of our recommendations found way into the consultant’s document. We created a Demo Music Observatory to provide a practical guidance on the decisions facing the European stakeholders, and to answer the questions that were left open in the Feasibility Study &amp;mdash; particularly on  &lt;a href=&#34;#data-gaps&#34;&gt;data integration&lt;/a&gt; and the &lt;a href=&#34;#organization&#34;&gt;institutional model&lt;/a&gt;, where a wrong choice can lead to very long delivery time, &lt;a href=&#34;#quality&#34;&gt;quality control&lt;/a&gt; and &lt;a href=&#34;#budget&#34;&gt;budgeting&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;We have been developing our &lt;a href=&#34;project/music-observatory/&#34;&gt;Demo Music Observatory&lt;/a&gt; in the world&amp;rsquo;s 2nd ranked university-backed incubator program, the &lt;a href=&#34;post/2020-09-25-yesdelft-validation/&#34;&gt;Yes!Delft AI Validation Lab&lt;/a&gt; since &lt;a href=&#34;post/2020-09-15-music-observatory-launch/&#34;&gt;15 September 2020&lt;/a&gt;. Our aim is to show a better organizational model, examples of &lt;a href=&#34;post/2020-09-11-creating-automated-observatory/&#34;&gt;research automation&lt;/a&gt; and other data integration innovation that can reduce the budgetary needs of the European Music Observatory by 80-90% and provide far more timely, accurate, and relevant service than most data observatories in Europe.&lt;/p&gt;
&lt;p&gt;CEEMID has been creating a similar data observatory to the foreseen European Data Observatory, solely based on the contribution of about 60 European stakeholders.  As the &lt;em&gt;Feasibility Study&lt;/em&gt; suggests, we would be happy to transfer much of CEEMID’s content to the European Data Observatory, which could potentially fill up about 50-70% of the envisioned observatory.  We are building our Demo Music Observatory based on the 2000 pan-European indicators collected by CEEMID since 2014.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://demoobservatory.dataobservatory.eu/music-diversity-circulation.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Diversity &amp;amp; Circulation Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;








  











&lt;figure id=&#34;figure-illusory-data-gap-active-and-music-participation-is-available-on-eu-level-both-for-gender-groups-or-four-ethnic-minorities--this-is-regularly-featured-in-various-european-cap-surveys-and-in-our-national-cap-surveys-too&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/comparative/music_activity_playing_an_instrument_by_gender.png&#34; data-caption=&#34;Illusory data gap: active and music participation is available on EU level both for gender groups or four ethnic minorities – this is regularly featured in various European CAP surveys and in our national CAP surveys, too.&#34;&gt;


  &lt;img src=&#34;/media/comparative/music_activity_playing_an_instrument_by_gender.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Illusory data gap: active and music participation is available on EU level both for gender groups or four ethnic minorities – this is regularly featured in various European CAP surveys and in our national CAP surveys, too.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;The Feasibility Study is based on perceived data gaps between data needs of the European stakeholders and data availability. We have shown earlier this year to the European stakeholders that much of these data gaps are &lt;a href=&#34;post/2020-01-30-ceereport/#invisibility&#34;&gt;illusory&lt;/a&gt;. We would like to give about 50 indicators with full documentation, automated, weekly, monthly, quarterly, or annual refreshment for free for all music industry users. We would like to challenge the stakeholders to formulate data requests to us and think together on the ways how could the European music industry build a better observatory faster and with less cost.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://data.music.dataobservatory.eu/music-economy.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Economy Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The Feasibility Study concludes that a “European Music Observatory would require a very significant allocation of funds, beyond what could be currently expected from the possible budget of the future Creative Europe programme”.   While the Feasibility Study provide cost options, or any cost-benefit analysis, we are certain that this is an exaggeration.  Most European data observatories operate with an annual 20,000-200,000-euro subsidy.  We want to show with our Demo Music Observatory what can be achieved with an annual budget of 20,000 euros, 50,000 euros, 100,000 euros or 200,000 euros.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://data.music.dataobservatory.eu/music-society.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music, Society and Citizenship Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
</description>
    </item>
    
    <item>
      <title>Creating An Automated Data Observatory</title>
      <link>/post/2020-09-11-creating-automated-observatory/</link>
      <pubDate>Fri, 11 Sep 2020 16:00:39 +0200</pubDate>
      <guid>/post/2020-09-11-creating-automated-observatory/</guid>
      <description>&lt;p&gt;We are building data ecosystems, so called observatories, where scientific, business, policy and civic users can find factual information, data, evidence for their domain.  Our open source, open data, open collaboration approach allows to connect various open and proprietary data sources, and our reproducible research workflows allow us to automate data collection, processing, publication, documentation and presentation.&lt;/p&gt;
&lt;p&gt;Our scripts are checking data sources, such as Eurostat&amp;rsquo;s Eurobase, Spotify&amp;rsquo;s API and other music industry sources every day for new information, and process any data corrections or new disclosure, interpolate, backcast or forecast missing values, make currency translations and unit conversions. This is shown illustrated with an &lt;a href=&#34;https://dataobservatory.eu/post/2020-07-25-reproducible_ingestion/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;earlier post&lt;/a&gt;.&lt;/p&gt;

&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;
  &lt;iframe src=&#34;https://www.youtube.com/embed/fQJHflWPS34&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; allowfullscreen title=&#34;YouTube Video&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;p&gt;For direct access to the file visit &lt;a href=&#34;https://dataobservatory.eu/video/making-of-dmo.mp4&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;this link&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In the video we show automated the creation of an observatory website with well-formatted, statistical data dissemination, a technical document in PDF and an ebook can be automated.  In our view, our technology is particularly useful technology in business and scientific researech projects, where it is important that always the most timely and correct data is being analyzed, and remains automatically documented and cited. We are ready deploy public, collaborative, or private data observatories in short time.&lt;/p&gt;
&lt;p&gt;Data processing costs can be as high as 80% for any in-house AI deployment project. We work mainly with organization that do not have in house data science team, and acquire their data anyway from outside the organization. In their case, this rate can be as high as 95%, meaning that getting and processing the data for deploying AI can be 20x more expensive than the AI solution itself.&lt;/p&gt;
&lt;p&gt;AI solutions require a large amount of standardized, well processed data to learn from.  We want to radically decrease the cost of data acquisition and processing for our users so that exploiting AI becomes in their reach. This is particularly important in one of our target industries, the music industries, where most of the global sales is algorithmic and AI-driven. Artists, bands, small labels, publishers, even small country national associations cannot remain competitive if they cannot participate in this technological revolution.&lt;/p&gt;
&lt;p&gt;We &lt;a href=&#34;https://dataobservatory.eu/post/2020-08-24-start-up/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;started&lt;/a&gt; our operations on 1 September 2020 on the basis of &lt;a href=&#34;http://documentation.ceemid.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CEEMID&lt;/a&gt;, a pan-European data observatory that created about 2000 music and creative industry indicators for its users. In the coming days, we are gradually opening up about 50 &lt;a href=&#34;https://music.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;music industry&lt;/a&gt; and 50 broader creative industry indicators in a fully reproducible workflow, with daily re-freshed, re-processed, well-formatted and documented indicators for business and policy decisions.&lt;/p&gt;
&lt;p&gt;We would like to validate this approach in one of the world&amp;rsquo;s most prestigious university-backed incubator programs, in the &lt;a href=&#34;https://www.yesdelft.com/yes-programs/ai-blockchain-validation-lab/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Yes!Delft AI/Blockchain Validation Lab&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;video-credits&#34;&gt;Video credits&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Data acquisition and processing: Daniel Antal, CFA and Marta Kołczyńska, PhD (&lt;a href=&#34;https://music.dataobservatory.eu/economy.html#demand&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;survey data&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;Documentation automation: Sandor Budai&lt;/li&gt;
&lt;li&gt;Video art: Line Matson&lt;/li&gt;
&lt;li&gt;Music: &lt;a href=&#34;https://www.youtube.com/moonmoonmoon&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Moon Moon Moon&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Our Approach To A European Music Observatory</title>
      <link>/project/music-observatory/</link>
      <pubDate>Wed, 26 Aug 2020 08:00:00 +0200</pubDate>
      <guid>/project/music-observatory/</guid>
      <description>&lt;p&gt;We are developing our &lt;a href=&#34;project/music-observatory/&#34;&gt;Demo Music Observatory&lt;/a&gt; in the world&amp;rsquo;s 2nd ranked university-backed incubator program, the &lt;a href=&#34;post/2020-09-25-yesdelft-validation/&#34;&gt;Yes!Delft AI Validation Lab&lt;/a&gt;. Our aim is to show a better organizational model, examples of research automation and other data integration innovation that can reduce the budgetary needs of the European Music Observatory by 80-90% and provide far more timely, accurate, and relevant service than most data observatories in Europe.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;#background&#34;&gt;Background&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#data-gaps&#34;&gt;Data gaps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#organization&#34;&gt;Organization and institutional model&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#quality&#34;&gt;Quality Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#budget&#34;&gt;Value For Money, Budget&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#use-cases&#34;&gt;Use Cases&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;background&#34;&gt;Background&lt;/h2&gt;
&lt;p&gt;Data is power, and &lt;code&gt;big data creates injustice&lt;/code&gt;.  Organizations that control large amounts of data, for example, the entire listening history of hundreds of millions of people in all major countries of the world, can train algorithms and robots that drive most of the music in the world.  They can make your investment into a sound recording successful or doomed. They can circumvent or help a local content regulation, reinforce, or disable a national cultural policy goal.  A country may introduce national artist quotas on radio, if all the youth will be personally recommended foreign songs in their music discovery age in the very same country.&lt;/p&gt;
&lt;p&gt;We believe that answer of the EU and UNESCO with the creation of permanent data collection points, so-called &lt;a href=&#34;https://dataobservatory.eu/faq/observatories/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data observatories&lt;/a&gt; is correct. However, after reviewing 62 data observatories, we are convinced that many data observatories are doomed to fail.&lt;/p&gt;
&lt;p&gt;Our private observatory, CEEMID was consulted in the creation of the &lt;a href=&#34;https://op.europa.eu/en/publication-detail/-/publication/a756542a-249d-11eb-9d7e-01aa75ed71a1/language-en/format-PDF/source-171307257&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Feasibility study for the establishment of a European Music Observatory&lt;/a&gt;, and some of our recommendations found way into the consultant’s document. We created a Demo Music Observatory to provide a practical guidance on the decisions facing the European stakeholders, and to answer the questions that were left open in the Feasibility Study &amp;mdash; particularly on  &lt;a href=&#34;#data-gaps&#34;&gt;data integration&lt;/a&gt; and the &lt;a href=&#34;#organization&#34;&gt;institutional model&lt;/a&gt;, where a wrong choice can lead to very long delivery time, &lt;a href=&#34;#quality&#34;&gt;quality control&lt;/a&gt; and &lt;a href=&#34;#budget&#34;&gt;budgeting&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;data-gaps&#34;&gt;Data Gaps&lt;/h2&gt;
&lt;p&gt;According to the feasibility study, 11% of the stakeholders consulted found that sufficient data was available for their work, 30% said that there could be more data but that does not affect their work, and 59% found that the lack of data affects their work.&lt;/p&gt;
&lt;p&gt;We have shown in the &lt;a href=&#34;publication/ceereport_2020/&#34;&gt;Central &amp;amp; Eastern European Music Industry Report 2020&lt;/a&gt;, featured in the &lt;a href=&#34;post/2020-01-30-ceereport/&#34;&gt;CCS Ecosystems: FLIPPING THE ODDS Conference&lt;/a&gt; – a two-day high-level stakeholder event jointly organized by Geothe-Institute and the DG Education and Culture of the European Commission with the Creative FLIP project.that much of the data gap is &lt;a href=&#34;post/2020-01-30-ceereport/#invisibility&#34;&gt;illusory&lt;/a&gt;: the fragmented nature of the music industry, the lack of in-house data expertise create bottlenecks in the use of the data. However, the data is present, and as it is stated in 148-149, we are willing to transfer thousands of indicators in all pillars to the future European Music Observatory.&lt;/p&gt;
&lt;p&gt;Our Demo Music Observatory is based on the accepted music industry concept in the US and the EU (the three-income stream model) and its data maps that we could apply to emerging markets &amp;ndash; for example, in &lt;a href=&#34;post/2016-04-20_makk15/&#34;&gt;the case of Croatia&lt;/a&gt;. A clear map of the industry and a clear map of the data reveals that much of the perceived gap is illusory.  We would like to challenge the European music stakeholders to test us, request seemingly missing data that we will try to publish.&lt;/p&gt;








  











&lt;figure id=&#34;figure-illustration-our-map-to-find-to-locate-data-in-the-croatian-music-industry-our-demo-music-observatory-is-based-on-the-accepted-music-industry-concept-in-the-us-and-the-eu-the-three-income-stream-model-and-its-data-maps&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/methodology/three_income_streams_croatia.png&#34; data-caption=&#34;Illustration: our map to find to locate data in the Croatian music industry. Our Demo Music Observatory is based on the accepted music industry concept in the US and the EU (the three-income stream model) and its data maps.&#34;&gt;


  &lt;img src=&#34;/media/methodology/three_income_streams_croatia.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Illustration: our map to find to locate data in the Croatian music industry. Our Demo Music Observatory is based on the accepted music industry concept in the US and the EU (the three-income stream model) and its data maps.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;This remains a problem with the Summary of Data Gaps on pages 128-131 that enumerate the perceived lack of data for the three pillars.  We believe that these data gaps are in most cases illusory, and the remedies offered in the study are often misplaced.&lt;/p&gt;
&lt;h2 id=&#34;circulation-of-repertoire--cultural-diversity&#34;&gt;Circulation of Repertoire &amp;amp; Cultural Diversity&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Streaming activity: the Feasibility Study offers Nielsen’s Global Charts as a potential solution, even though we have shown that this is not the right approach.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The problem with Nielsen’s charts, or any chart provider’s chart, is that it covers less than 0.01% of the European repertoire, and it depicts a completely irrelevant picture for the 99.99% of the European stakeholders.&lt;/p&gt;








  











&lt;figure id=&#34;figure-illustration-our-map-to-find-to-locate-data-in-the-croatian-music-industry-our-demo-music-observatory-is-based-on-the-accepted-music-industry-concept-in-the-us-and-the-eu-the-three-income-stream-model-and-its-data-maps&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/reports/medianvalue-1.png&#34; data-caption=&#34;Illustration: our map to find to locate data in the Croatian music industry. Our Demo Music Observatory is based on the accepted music industry concept in the US and the EU (the three-income stream model) and its data maps.&#34;&gt;


  &lt;img src=&#34;/media/reports/medianvalue-1.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Illustration: our map to find to locate data in the Croatian music industry. Our Demo Music Observatory is based on the accepted music industry concept in the US and the EU (the three-income stream model) and its data maps.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;We believe that the right approach, followed by our Demo Music Observatory, is a reconciliation with the work on &lt;a href=&#34;https://ec.europa.eu/eurostat/cros/content/big-data_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Big Data&lt;/a&gt; the  European Statistical System (i.e. the partnership of Eurostat and the national statistical authorities.) (See &lt;a href=&#34;https://ceereport2020.ceemid.eu/market.html#recmarket&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;our analysis&lt;/a&gt; of 20 advanced, emerging and future markets in Europe.)&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://demoobservatory.dataobservatory.eu/music-diversity-circulation.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Diversity &amp;amp; Circulation Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;h3 id=&#34;people--diversity&#34;&gt;People &amp;amp; Diversity&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;The &lt;em&gt;Feasibility Study&lt;/em&gt; claims that “there is no real EU wide data on diversity in the music sector.  Diversity should include the study of ethnic minorities, gender and vulnerable groups&amp;hellip;”&lt;/p&gt;
&lt;/blockquote&gt;








  











&lt;figure id=&#34;figure-illusory-data-gap-active-and-music-participation-is-available-on-eu-level-both-for-gender-groups-or-four-ethnic-minorities--this-is-regularly-featured-in-various-european-cap-surveys-and-in-our-national-cap-surveys-too&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;/media/comparative/music_activity_playing_an_instrument_by_gender.png&#34; data-caption=&#34;Illusory data gap: active and music participation is available on EU level both for gender groups or four ethnic minorities – this is regularly featured in various European CAP surveys and in our national CAP surveys, too.&#34;&gt;


  &lt;img src=&#34;/media/comparative/music_activity_playing_an_instrument_by_gender.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Illusory data gap: active and music participation is available on EU level both for gender groups or four ethnic minorities – this is regularly featured in various European CAP surveys and in our national CAP surveys, too.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;However, active and music participation is available on EU level both for gender groups (see our chart) or four ethnic minorities – this is regularly featured in various European CAP surveys and in our national CAP surveys, too.  Our peer-reviewed, open-source &lt;a href=&#34;https://retroharmonize.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;retroharmonize&lt;/a&gt; statistical software was developed exactly to create these data products.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://data.music.dataobservatory.eu/music-society.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music, Society and Citizenship Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;h3 id=&#34;music-economy&#34;&gt;Music Economy&lt;/h3&gt;
&lt;p&gt;Because music is mainly a market activity, apart from the mainly publicly funded classical (arts) music sector, and a part of the music (stage) infrastructure, a wide variety of data is available on the music economy in a consistent manner.&lt;/p&gt;
&lt;p&gt;We are calling on all partners to challenge us, either on Music Economy or the other pillars of the music observatory. We will try to provide the requested data on a weekly, monthly, quarterly or annually refreshing basis in the highest possible quality – for the first 50 request for free. We would like to demonstrate that most of the data gap is illusory, and a collaborative, bottom-up approach can deliver a European Music Observatory faster, cheaper in a much higher quality.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Challenge Our Demo Observatory&lt;/code&gt;: &lt;em&gt;Check out the&lt;/em&gt; &lt;a href=&#34;https://data.music.dataobservatory.eu/music-economy.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Economy Pillar&lt;/a&gt; &lt;em&gt;of our Demo Music Observatory.  If you do not find what you are looking for,&lt;/em&gt; &lt;a href=&#34;https://dataobservatory.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;contact us&lt;/a&gt; &amp;mdash; &lt;em&gt;we will try to put the data there from our repositories.&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&#34;organization&#34;&gt;Organization and institutional model&lt;/h2&gt;
&lt;p&gt;We believe that the biggest shortcoming of the Feasibility Study is a systematic overview of a wide range of organizational possibilities.  The Feasibility Study is illustrated by examples from European Audiovisual Observatory as a good practice, investigates the possibility of integrating the music observatory into the EUIPO Observatory, and as an alternative, it considers the &lt;a href=&#34;https://ec.europa.eu/info/food-farming-fisheries/farming/facts-and-figures/markets/overviews/market-observatories_en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;six product observatories&lt;/a&gt; of DG Agriculture &amp;amp; Rural Development.  This approach provides a too narrow range of potential organizational alternatives.&lt;/p&gt;
&lt;p&gt;We have reviewed a further 59 observatories, including ones that were not successful and ceased to exist, to understand why some observatories can increase their service level and why others fail. It is unclear what criteria make the European Audiovisual Observatory a good example, so it is impossible to say from this Feasibility Study if there are better examples – and we believe that there are.  The EAO is one of the oldest, if not the oldest observatories. It was created before the EU was founded before the commercial internet launched, when far different legal, governance and data collection needs had to be addressed. We believe that this may be the costliest and most time-consuming model to replicate.&lt;/p&gt;
&lt;h3 id=&#34;bottom-up-versus-top-down&#34;&gt;Bottom-up versus top-down&lt;/h3&gt;
&lt;p&gt;The Feasibility Study only considers hierarchical and centralized observatories, that operate on a top-down data integration, or rather, simple data collection strategy.  We have created a large observatory  with a very limited budget (which has a public layer, the Demo Music Observatory, and privately funded, much larger version, CEEMID) when we realized that the centralized, hierarchical, top-down approach is not suitable for a fragmented industry like the music industry. The example of CEEMID shows that a bottom-up and collaborative approach requires far less time, budget than a hierarchical approach, and can yield superior data quality. It is not surprising that most of the 62 observatories that we have studied are not hierarchical, and not operated by a centralized body but by a Consortium of various scientific, policy and industry stakeholders.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The &lt;code&gt;European Music Observatory&lt;/code&gt; should fully exploit the EU&amp;rsquo;s &lt;strong&gt;open data&lt;/strong&gt; regime. (See our examples: &lt;a href=&#34;https://dataandlyrics.com/post/2020-04-16-regional-opendata-release/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;our first open data release&lt;/a&gt;) Our proposal about this were quoted in the &lt;em&gt;Feasibility Study&lt;/em&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; It should not re-collect data that already exists. Instead it should create policies, synergies and incentives that bring that data to light. The &lt;em&gt;Feasibility Study&lt;/em&gt; partly embraces this idea.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;decentralization&#34;&gt;Hierarchical versus decentralized observatory&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;We want big data to work for small venues, independent labels, startups, great and undiscovered artists.&lt;/code&gt; We believe that you cannot make a successful album launch, a market entry or introduce a successful cultural policy without large amounts of well processed and correctly analysed data. We want to create a &lt;a href=&#34;https://music.dataobservatory.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Music Observatory&lt;/a&gt; that integrates the small data of many small bands, small labels, small venues, small countries, and mount correct the injustice. Make algorithms transparent and the competition fair.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; It should not re-collect data that already exists. Instead it should create policies, synergies and incentives that bring that data to light. The &lt;em&gt;Feasibility Study&lt;/em&gt; partly embraces this idea.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The observatory must allow a seamless &lt;a href=&#34;https://music.dataobservatory.eu/approach.html#dataintegration&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data integration&lt;/a&gt; between open data, and highly confidential proprietary data. The &lt;em&gt;Feasiblity Study&lt;/em&gt; wants to own and buy data, instead getting access to industry data.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The open collaboration principle must allow an easy opt-in and opt-out for small and larger, public and private organizations, and offer for full transparency for all users. The &lt;em&gt;Feasibility Study&lt;/em&gt; offers a closed observatory without opt-in.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;budget&#34;&gt;Value For Money, Budget&lt;/h2&gt;
&lt;p&gt;We believe that a bottom-up, collaborative approach of the industry stakeholders offers a much faster approach to growth, because it can mange conflicts of interests, build upon existing and trusted data assets.  The &lt;a href=&#34;https://rm.coe.int/budget-19-information-income-and-expenses-of-the-european-audiovisual-/1680952994&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;annual budget&lt;/a&gt; of the European Audiovisual Observatory is about 3.7 million euros.  Most of the European data observatories that we surveyed have an annual budget of 20,000-200,000 euros. In our view, a very comprehensive data observatory can be built from 1-3 million euros and maintained with a collaborative use of existing data assets and a subsidy of up to 200,000 euros a year.&lt;/p&gt;
&lt;h2 id=&#34;quality&#34;&gt;Quality Control&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; It should be transparent, the indicator design should be based on open-source statistical software. Our proposal about this were quoted in the &lt;em&gt;Feasibility Study&lt;/em&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The European Music Observatory must embrace evidence-based &lt;a href=&#34;https://music.dataobservatory.eu/approach.html#opa&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;open Policy Analysis&lt;/a&gt;. This topic is not considered in the &lt;em&gt;Feasibility Study&lt;/em&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;use-cases&#34;&gt;Use Cases&lt;/h2&gt;
&lt;p&gt;We want to support the European music industry and our friends in North America, Australia, and all over the world to turn the tables with @ref(innovation) &lt;a href=&#34;https://music.dataobservatory.eu/innovation.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;innovation&lt;/a&gt; coming from the open source community.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;We want to help you to create alternative recommendation engines that actually recommend songs from your country, and we want to give you very clear export market targets with the help of &lt;a href=&#34;https://music.dataobservatory.eu/innovation.html#ai&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;AI&lt;/a&gt;. Our &lt;a href=&#34;https://dataandlyrics.com/project/listen-local/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Listen Local Initiative&lt;/a&gt; is aiming to create recommendation engines for cities and regions, and make sure that local bands are recommended to local audiences and audiences in the regions where they will be touring after the Covid-19 pandemic.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We want your evidence to stand a fighting chance against large teams of professional legal and economics teams on the other side with &lt;a href=&#34;https://music.dataobservatory.eu/innovation.html#valuation&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;proper valuations and damage claims&lt;/a&gt;.  And we want to present all those hundreds and thousands of pages automatically, going through dozens and dozens of automated &amp;ldquo;unit-tests&amp;rdquo; until nobody can find errors.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We want you to be able to prove to your fans, the press, your economy minister that music in many countries has not been at the mercy of the taxpayer, but has been carrying far heavier tax burdens than manufacturers.  We want to make your case that the music industry plays a vital role in the European economic recovery and job creation, because we can create &lt;a href=&#34;https://music.dataobservatory.eu/innovation.html#valuation#eia&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;economic impact assessments&lt;/a&gt; on GDP, employment, tax, import and export effects automatically.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Because music and culture are often managed at the level of cities, regions and communities, we want to give you all the data on sub-national levels, whether for regions, metropolitan areas or smaller divisions.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>First CEEMID Regional Open Data Release</title>
      <link>/post/2020-04-16-regional-opendata-release/</link>
      <pubDate>Thu, 16 Apr 2020 17:00:00 +0200</pubDate>
      <guid>/post/2020-04-16-regional-opendata-release/</guid>
      <description>&lt;p&gt;&lt;em&gt;Internet use: participating in social networks (creating user profile, posting messages or other contributions to facebook, twitter, etc.) [percentage of individuals]&lt;/em&gt; shows the development of social media use in the past 10 years in very high detail.  Social media is one of the most important ways to communicate with fans and find audiences for gigs, performances and to share new releases.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/img/dataanimation/internet_use_social_networks.gif&#34; alt=&#34;Social media use 2011-2019&#34;&gt;&lt;/p&gt;
&lt;p&gt;The chosen dataset is highlighting several new priorities of CEEMID.  This indicator, which is based on a &lt;a href=&#34;https://appsso.eurostat.ec.europa.eu/nui/show.do?dataset=isoc_r_iuse_i&amp;amp;lang=en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Eurostat statistical product&lt;/a&gt;, has a much higher data quality than the Eurostat release, it is easier to use, and goes beyond the detail of national statistics.  It contains data on 411 territories in Europe, including countries, provinces and smaller regions, even some metropolitan areas.&lt;/p&gt;
&lt;p&gt;The dataset is available on the European open research data repository, &lt;a href=&#34;https://zenodo.org/record/3754574#.XpimX8gzbIU&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Zenodo&lt;/a&gt;. It will be updated annually. &lt;a href=&#34;https://doi.org/10.5281/zenodo.3754574&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;img src=&#34;https://zenodo.org/badge/DOI/10.5281/zenodo.3754574.svg&#34; alt=&#34;DOI&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The processing information is available in the dataset.  First, we have used our open source software to correct the regional boundary changes during the decade (see &lt;a href=&#34;/post/2020-02-13-regional_eurostat/&#34;&gt;Programatic Approach To Work With European Regional Data Panels&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;When data was missing in the end of the dataset, we used the last observation carry forward, when in the beginning, the next observation carry backwards data.  Gaps in the data were interpolated using linear interpolation. Whenever data was available on a larger (provincial level), we imputed it to the smaller regional units.&lt;/p&gt;
&lt;p&gt;The data contains standard national / regional references according the European NUTS2013 standard for backwards compatibility. Further documentation will be available on our methodology on the &lt;a href=&#34;https://documentation.ceemid.eu&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;documentation.ceemid.eu&lt;/a&gt; wiki website.&lt;/p&gt;
&lt;p&gt;At last, the data was put into a table that complies with the &lt;a href=&#34;https://www.jstatsoft.org/article/view/v059i10&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;tidy data&lt;/a&gt; principles for easier processing on computers and immediate use in spreadsheet applications.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Use this in your article? Further research? Collaboration? Let&amp;rsquo;s get in touch on &lt;a href=&#34;https://www.linkedin.com/in/antaldaniel/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;LinkedIn&lt;/a&gt;, &lt;a href=&#34;https://twitter.com/antaldaniel&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Twitter&lt;/a&gt;, or via &lt;a href=&#34;https://danielantal.eu/#contact&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;danielantal.eu&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;








  
  


&lt;div class=&#34;gallery&#34;&gt;

  
  
  
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2011.jpg&#34; data-caption=&#34;Internet use: participating in social networks (2011)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2011_hua485aaf22d1f04af04808580e8565870_238711_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2015.jpg&#34; data-caption=&#34;Internet use: participating in social networks (2015)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2015_hua485aaf22d1f04af04808580e8565870_246037_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2019.jpg&#34; data-caption=&#34;Internet use: participating in social networks (2019)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/ceemid_regional_social_media_use_2019_hua485aaf22d1f04af04808580e8565870_250355_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2011.jpg&#34; data-caption=&#34;CEEMID metadata summary (2011)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2011_hua485aaf22d1f04af04808580e8565870_247818_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2015.jpg&#34; data-caption=&#34;CEEMID metadata summary (2015)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2015_hua485aaf22d1f04af04808580e8565870_247520_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2019.jpg&#34; data-caption=&#34;CEEMID metadata summary (2019)&#34;&gt;
  &lt;img data-src=&#34;/post/2020-04-16-regional-opendata-release/gallery/metadata_ceemid_regional_social_media_use_2019_hua485aaf22d1f04af04808580e8565870_243997_0x190_resize_q75_lanczos.jpg&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;263&#34; height=&#34;190&#34;&gt;
  &lt;/a&gt;
  

  
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>CCS Ecosystems: Evidence-Driven CCI Policy &amp; The Central &amp; Eastern European Music Industry Report</title>
      <link>/post/2020-01-30-ceereport/</link>
      <pubDate>Wed, 29 Jan 2020 16:00:00 +0100</pubDate>
      <guid>/post/2020-01-30-ceereport/</guid>
      <description>&lt;p&gt;CEEMID &amp;amp; Consolidated Independent presented and discussed with stakeholders the  &lt;a href=&#34;https://danielantal.eu/publication/ceereport_2020/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Central &amp;amp; Eastern European Music Industry Report 2020&lt;/a&gt; as a case-study on national and comparative evidence-based policymaking in the cultural and creative sector on the &lt;a href=&#34;http://creativeflip.creativehubs.net/2019/12/03/flipping-the-odds/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CCS Ecosystems: FLIPPING THE ODDS Conference&lt;/a&gt; – a two-day high-level stakeholder event jointly organized by Geothe-Institute and the DG Education and Culture of the European Commission with the Creative FLIP project.&lt;/p&gt;
&lt;p&gt;Daniel&amp;rsquo;s presentation was focused around the question on invisibility of the CCI sector in the economic, education and labour policymaking, and the low level of data use in fact-based cultural policy design, and the following policy design problems. Our CEE Music Industry Report 2020 created with the help and support of Consolidated Independent was used as a use case for the problems.&lt;/p&gt;
&lt;p&gt;This blog post is an edited version of Daniel&amp;rsquo;s presentation and the subsequent panel discussion with the stakeholders and organizers.&lt;/p&gt;
&lt;p&gt;The CEE Report builds on the results of the first &lt;a href=&#34;https://danielantal.eu/publication/hungary_music_industry_2014/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hungarian&lt;/a&gt;, &lt;a href=&#34;https://danielantal.eu/publication/slovak_music_industry_2019/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Slovak&lt;/a&gt;, &lt;a href=&#34;https://danielantal.eu/publication/private_copying_croatia_2019/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Croatian&lt;/a&gt; and &lt;a href=&#34;http://czdev.ceemid.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Czech&lt;/a&gt; music industry reports are compared with Armenian, Austrian, Bulgarian, Lithuanian, Serbian and Slovenian data and findings.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/img/publications/cee_report_2020_frontcover.jpg&#34; alt=&#34;Central &amp; Eastern European Music Industry Report 2020&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;invisibility&#34;&gt;Invisibility&lt;/h2&gt;
&lt;p&gt;The measurement problems and the ‘invisibility’ of creative and cultural industries is a consequence of the fact that these industries are predominantly comprised of microenterprises and individual, freelancing entrepreneurs.  Even larger entities, such as collective management organizations can be classified as small enterprises.
In the EU, small- and medium enterprises, and especially microenterprises usually have reduced reporting duties to the statistical authorities and tax authorities (which is the most important secondary source of government statistics in anonymized, aggregated form.)  This means that the supply side is not visible for policymakers. The recommendation is to conduct sample-based surveys among these microenterprises, but very few member states do that.&lt;/p&gt;
&lt;p&gt;Another problem is that on the demand side, not all member states create statistics.  ESSNet-Culture created recommendations how to measure cultural access and participation, which is a broader term than cultural consumption, as it includes non-market forms, for example, liturgical music, amateur acting, and so on.  The European Commission sometimes makes excellent, but not detailed &lt;a href=&#34;https://danielantal.eu/usecase/cap/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CAP surveys&lt;/a&gt;, which are the most important sources of Eurostat’s relevant pan-European statistics.&lt;/p&gt;
&lt;p&gt;CEEMID has been making such surveys, both on the supply side (in music and film) and in the audience side (in music, film, theatre, opera, and artistic activities) in several member states, and has plenty of experience with using the EU-mandated CAP surveys of 2007 and 2013. The CEE report relies on the latter date set in first part of the &lt;a href=&#34;http://ceereport2020.ceemid.eu/audience.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;audience analysis&lt;/a&gt;. Our work was already presented in 2015 as a best use case in &lt;a href=&#34;https://danielantal.eu/publication/creating_better_2015/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Creating better national cultural statistics with Eurobarometer datasets and ESSNet-Culture technical recommendations&lt;/a&gt; at GESIS, which maintains the Eurobarometer archives, on the Eurobarometer Symposium &lt;a href=&#34;https://www.gesis.org/fileadmin/upload/events/EB-Symposium/Announcement_EB_Symposium.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Four Decades of Surveying Europe –
Perspectives on Academic Research with the European Commission’s Eurobarometer Surveys&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;For the EU the lowest hanging fruit would be to critically assess the past surveys, including the partial CAP survey made in 2017 for the cultural heritage part of culture, and the national surveys conducted by CEEMID and its partners, and to mandate an annual or biannual CAP survey within the Eurobarometer series, probably as a specially sampled “Special Eurobarometer”.  This would very significantly reduce the costs compared to a country-to-country basis, and probably could be shared by other institutions, for example, with the European Audiovisual Observatory.  This alone would greatly increase the demand / consumption side information on the services of creative and cultural enterprises.&lt;/p&gt;
&lt;p&gt;In the panel discussion Consolidated Independent highlighted the problem of leaving sample-based statistics making to the industry itself, which leads to myopical incentives to create ‘policy-based evidence’ that is cherry picked by industry trade associations to fit their often not very well thought out policy agenda.  In our view, the most important role of a future European Music Observatory would be to set standards to data collection and integration.  The music industry is  one of the most data-rich industries globally, but the publicly available, verified, trustworthy information is scarce both for policy-making and for business planning among microenterprises who have know specialized research know-how. Our already existing, representative &lt;a href=&#34;http://survey2019.ceemid.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;national surveys&lt;/a&gt; should and could be extended to the whole Europe with the quality control and visibility offered by such an Observatory.&lt;/p&gt;
&lt;h2 id=&#34;industry-organization&#34;&gt;Industry organization&lt;/h2&gt;
&lt;p&gt;A very significant challenge with evidence-based policymaking, or, in fact, with any policy making is that the extremely fragmented nature of the industry makes national and EU-level consultations very difficult.  Most of the workforce is neither a classical employer nor employee but works as a freelancer or a micro-entrepreneur. Their views are very rarely represented by trade unions or employee associations or chambers of commerce. Despite all efforts on EU level to make the social dialogue more representative for atypical and flexible work forms, the problems and the views of the creative and cultural sectors are largely unrepresented in policy debate.&lt;/p&gt;
&lt;p&gt;A prime example of this problem is the very heavy over-taxation of the music industry that we have shown in the &lt;a href=&#34;https://danielantal.eu/publication/hungary_music_industry_2014/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hungarian&lt;/a&gt; and &lt;a href=&#34;https://danielantal.eu/publication/slovak_music_industry_2019/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Slovak&lt;/a&gt; national music industry reports, and in other documents in Croatia.  The problem is not only characteristic for the music industry, but generally all CCIs because they share similar economic properties: no real chance to use tax breaks, high level of labour input and high level of value added.  While policy makers and granting authorities spend much time on trying to improve the financing of this sector, in fact, reducing over-taxation would make a much more imminent impact on the liquidity, profitability and growth opportunities of the sector.&lt;/p&gt;
&lt;p&gt;However, in the making of economic and tax policies, the fragmented creative and cultural industries hardly can represent their special situation.&lt;/p&gt;
&lt;h2 id=&#34;policy-issues&#34;&gt;Policy issues&lt;/h2&gt;
&lt;p&gt;Apart from taxation issues, which significantly reduce the liquidity, profitability and growth opportunities of these sectors in many EU countries, particularly in the CEE, where corporate taxes are low but value-added taxes are high, there are other important policy problem that reduce the long-term growth capacity of the sector.&lt;/p&gt;
&lt;p&gt;The very small enterprise size leads to missing strategic human resources (HR) and research and development (R&amp;amp;D) functions in almost all enterprises – including simple market research activities.  Companies with 1-2 employees do not have specialized management and support functions, and thus they have a very strong handicap in HR and R&amp;amp;D.&lt;/p&gt;
&lt;p&gt;A good example of this problem is the motion picture and TV industry.  These industries were comprised of medium-sized enterprises in the 1980s with significant in-house education functions. The current structure of these industries, however, resembles music, with almost all enterprises staying below the 5-person threshold.  In our experience, based on development needs assessments in the Hungarian motion picture and the &lt;a href=&#34;http://czdev.ceemid.eu/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Czech music industry&lt;/a&gt;, this creates an acute skills and labor shortage.  Missing skills cannot be well replaced by recruitment, or with strategic HR development via life-long learning.&lt;/p&gt;
&lt;p&gt;Similarly to very reduced opportunities to participate in, and create life-long learning schemes, there are very little chances to engage in market research and R&amp;amp;D.  While the music industry, for example, is one of the most data-driven industries in the world, the microenterprise size does not allow that these enterprises commission market research or hire data scientists. This leads to very asymmetrical relationships with the main distributors of music and media content on platforms that are owned by global data companies.&lt;/p&gt;
&lt;h2 id=&#34;recommendations&#34;&gt;Recommendations&lt;/h2&gt;
&lt;p&gt;Daniel made a few concrete recommendations in the panel.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Creating the European Music Observatory, and the creation of similar industry initiatives, and commissioning collaborative (multi-stakeholder) market research, as CEEMID works in many countries, can only replace the missing market research function in the extremely fragmented industries, such as motion picture production, the music industry, but to a certain degree architecture and design.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A low-hanging fruit would be a critical assessment of the previous Pan-European CAP surveys and the comparable national CAP surveys conducted by CEEMID and its partners following the ESSNet Culture recommendations and the inclusion of the CAP surveys in an annual or bi-annual form in the Eurobarometer (Special) series. A Special Eurobarometer may be more suitable because usually a non-proportional weighting of the sample gives the best value for money in these surveys.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Critically reviewing the participation of micro-enterprises in the current forms of social dialogue and looking for formal or informal ways to increase participation in policy making can gradually lead to more creative-friendly economic regulation and tax policies.  The Hungarian Music Industry Report 2015 and the Slovak Music Industry Report 2019 contains very interesting case studies for this problem that we briefly summarize in the &lt;a href=&#34;https://danielantal.eu/publication/ceereport_2020/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CEE Music Industry Report 2020&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Critically reviewing the few examples from mainly Nordic member states where collective agreements and other collaborative institutions allow microenterprises and freelancers to participate in life-long learning problems can help designing policies that will gradually reduce the huge skill gap of the CCIs in management know-how, data know-how, or renew their technical skills necessary in the production of their services and content. Our work with the Hungarian National Film Fund and surveys among more than a thousand film makers can give much insight into this problem.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;further-links&#34;&gt;Further links&lt;/h2&gt;
&lt;p&gt;Our research findings were earlier presented and discussed in &lt;a href=&#34;https://danielantal.eu/post/2019-09-27_cee_report/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Vienna&lt;/a&gt;, &lt;a href=&#34;https://danielantal.eu/post/2019-11-09-nouvelle-prague/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Prague&lt;/a&gt;, &lt;a href=&#34;https://danielantal.eu/post/2019-11-18-bush/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Budapest&lt;/a&gt; and &lt;a href=&#34;https://danielantal.eu/talk/slovak_report19/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Bratislava&lt;/a&gt; with stakeholders.&lt;/p&gt;
&lt;p&gt;You can follow Creative FLIP project on &lt;a href=&#34;https://twitter.com/creativeflip_eu?lang=en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Twitter&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
  </channel>
</rss>
