data points
Average review metric for the films currently showing at theatres for film critics
| 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)
0 comments