data points
Average review metric for the films currently showing at theatres for film critics
| Time Recorded (time1428) | Data (data1428) |
|---|---|
| 24 May 2013 08:30:25 | [65.6404494382023] |
| 23 May 2013 08:30:26 | [62.8681318681319] |
| 22 May 2013 08:30:24 | [64.258064516129] |
| 21 May 2013 08:30:25 | [64.010752688172] |
| 20 May 2013 08:30:32 | [64.4347826086957] |
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