Since it's your first time here, let us show you how Trendy works.

Close-button

Film Satisfaction: The Critics

  • Created by: Hugo Carr
  • Last ran: about 2 hours ago.
  • Auto-run in: about 21 hours.
  • Created on: 12 Feb 2012

465

data points

Description:

Average review metric for the films currently showing at theatres for film critics

Recently Collected Data (last 5 of 465) Show All Data

Time Recorded (time1428) Data (data1428)
21 May 2013 08:30:25 [64.010752688172]
20 May 2013 08:30:32 [64.4347826086957]
19 May 2013 08:30:27 [64.4565217391304]
18 May 2013 08:30:24 [65.2111111111111]
17 May 2013 08:30:28 [65.1777777777778]
a = urlread('http://www.metacritic.com/browse/movies/release-date/theaters/metascore?view=detailed');

[~, ~, ~, myStrings] = regexp(a, 'data metascore score_(unfavorable|favorable|mixed|outstanding)">[0-9\.]+</span>');
[~, ~, ~, numStrings] = regexp([myStrings{:}], '[0-9\.]+');
metaMean = mean(cellfun(@str2double, numStrings))

updatetrend(metaMean)
Tags:

    0 comments