<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Tidymodels on R Views</title>
    <link>https://rviews.rstudio.com/tags/tidymodels/</link>
    <description>Recent content in Tidymodels on R Views</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 21 May 2020 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://rviews.rstudio.com/tags/tidymodels/" rel="self" type="application/rss+xml" />
    
    
    
    
    <item>
      <title>Modern Rule-Based Models</title>
      <link>https://rviews.rstudio.com/2020/05/21/modern-rule-based-models/</link>
      <pubDate>Thu, 21 May 2020 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2020/05/21/modern-rule-based-models/</guid>
      <description>
        
&lt;script src=&#34;/rmarkdown-libs/header-attrs/header-attrs.js&#34;&gt;&lt;/script&gt;


&lt;div id=&#34;modern-rule-based-models&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Modern Rule-Based Models&lt;/h2&gt;
&lt;p&gt;Machine learning models come in many shapes and sizes. While deep learning models currently have the lion’s share of coverage, there are many other classes of models that are effective across many different problem domains. This post gives a short summary of several &lt;em&gt;rule-based models&lt;/em&gt; that are closely related to tree-based models (but are less widely known).&lt;/p&gt;
&lt;p&gt;While this post is focused on explaining on how these models work, it coincides with the release of the &lt;code&gt;rules&lt;/code&gt; package, a tidymodels package that provides a user interface to these models. A &lt;a href=&#34;https://www.tidyverse.org/blog/2020/05/rules-0-0-1/&#34;&gt;companion post&lt;/a&gt; at the tidyverse blog describes the usage of the package.&lt;/p&gt;
&lt;p&gt;To start, let’s discuss the concept of rules more generally.&lt;/p&gt;
&lt;div id=&#34;what-is-a-rule&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;What is a rule?&lt;/h3&gt;
&lt;p&gt;Rules in machine learning have been around for a long time (Quinlan, 1979). The focus of this article is using rules for traditional supervised learning (as opposed to &lt;a href=&#34;https://en.wikipedia.org/wiki/Association_rule_learning&#34;&gt;&lt;em&gt;association rule&lt;/em&gt;&lt;/a&gt; mining). In the context of feature engineering, a rule is a &lt;strong&gt;conditional logical statement&lt;/strong&gt;. It can be attached to some sort of predicted value too, such as&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;if (chance_of_rain &amp;gt; 0.75) {
  umbrella &amp;lt;- &amp;quot;yes&amp;quot;
} else {
  umbrella &amp;lt;- &amp;quot;no&amp;quot;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;There are various ways to create rules from data. The most popular method is to create a tree-based model and then “flatten” the model structure into a set of rules. This is called a “separate and conquer” approach.&lt;/p&gt;
&lt;p&gt;To demonstrate this, let’s use a data set with housing prices from Sacramento CA. Two predictors with a large number of levels are removed to make the rule output more readable:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;for (pkg in c(&amp;#39;dplyr&amp;#39;, &amp;#39;modeldata&amp;#39;, &amp;#39;rpart&amp;#39;)) {
  if (!requireNamespace(pkg)) {
    install.packages(pkg)
  }
}

library(dplyr)

data(Sacramento, package = &amp;quot;modeldata&amp;quot;)

Sacramento &amp;lt;-
  Sacramento %&amp;gt;% 
  mutate(price = log10(price)) %&amp;gt;% 
  select(-zip, -city)

str(Sacramento)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## tibble [932 × 7] (S3: tbl_df/tbl/data.frame)
##  $ beds     : int [1:932] 2 3 2 2 2 3 3 3 2 3 ...
##  $ baths    : num [1:932] 1 1 1 1 1 1 2 1 2 2 ...
##  $ sqft     : int [1:932] 836 1167 796 852 797 1122 1104 1177 941 1146 ...
##  $ type     : Factor w/ 3 levels &amp;quot;Condo&amp;quot;,&amp;quot;Multi_Family&amp;quot;,..: 3 3 3 3 3 1 3 3 1 3 ...
##  $ price    : num [1:932] 4.77 4.83 4.84 4.84 4.91 ...
##  $ latitude : num [1:932] 38.6 38.5 38.6 38.6 38.5 ...
##  $ longitude: num [1:932] -121 -121 -121 -121 -121 ...&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Consider a basic CART model created using &lt;code&gt;rpart&lt;/code&gt;:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(rpart)

rpart(price ~ ., data = Sacramento) &lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## n= 932 
## 
## node), split, n, deviance, yval
##       * denotes terminal node
## 
##  1) root 932 48.5000 5.334  
##    2) sqft&amp;lt; 1594 535 18.7200 5.211  
##      4) sqft&amp;lt; 1170 235  8.0440 5.107  
##        8) sqft&amp;lt; 934.5 71  2.2760 5.002 *
##        9) sqft&amp;gt;=934.5 164  4.6500 5.152 *
##      5) sqft&amp;gt;=1170 300  6.1390 5.292  
##       10) longitude&amp;lt; -121.3 243  4.8850 5.270 *
##       11) longitude&amp;gt;=-121.3 57  0.6081 5.388 *
##    3) sqft&amp;gt;=1594 397 10.6000 5.501  
##      6) sqft&amp;lt; 2317 245  4.7420 5.432  
##       12) longitude&amp;lt; -121.3 205  3.3190 5.407 *
##       13) longitude&amp;gt;=-121.3 40  0.6179 5.562 *
##      7) sqft&amp;gt;=2317 152  2.8450 5.611  
##       14) longitude&amp;lt; -121.2 110  1.6790 5.570 *
##       15) longitude&amp;gt;=-121.2 42  0.4864 5.720 *&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The splits in this particular tree involve the same two predictors. These paths to the terminal nodes are comprised of a set of &lt;code&gt;if-then&lt;/code&gt; rules. Consider the path to the eighth terminal node:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;if (sqft &amp;lt; 1594 &amp;amp; sqft &amp;lt; 1169.5 &amp;amp; sqft &amp;lt; 934.5) then pred = 5.001820&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;It is easy to &lt;em&gt;prune&lt;/em&gt; this rule down to just &lt;code&gt;sqft &amp;lt; 934.5&lt;/code&gt;. In all, the rules generated from this model would be:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;##  price                                              
##    5.0 when sqft &amp;lt;   935                            
##    5.2 when sqft is  935 to 1170                    
##    5.3 when sqft is 1170 to 1594 &amp;amp; longitude &amp;lt;  -121
##    5.4 when sqft is 1170 to 1594 &amp;amp; longitude &amp;gt;= -121
##    5.4 when sqft is 1594 to 2317 &amp;amp; longitude &amp;lt;  -121
##    5.6 when sqft is 1594 to 2317 &amp;amp; longitude &amp;gt;= -121
##    5.6 when sqft &amp;gt;=         2317 &amp;amp; longitude &amp;lt;  -121
##    5.7 when sqft &amp;gt;=         2317 &amp;amp; longitude &amp;gt;= -121&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;What are some more modern models that can use or generate rules? We’ll walk through three (which are all included in the &lt;code&gt;rules&lt;/code&gt; package).&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;c5.0-rules&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;C5.0 rules&lt;/h2&gt;
&lt;p&gt;The C4.5 algorithm (Quinlan, 1993b) was an early tree-based model that was released not long after the more well known CART model. One cool aspect of this model is that it could generate a classification tree &lt;em&gt;or&lt;/em&gt; a set of rules. These rules are derived from the original tree much in the same way that was shown above for &lt;code&gt;rpart&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Over the years, the author (Ross Quinlan) kept evolving the next generation of the model called &lt;a href=&#34;https://www.rulequest.com/see5-unix.html&#34;&gt;C5.0&lt;/a&gt;. About 10 years ago, he open-sourced that model and the C50 R package was born. Like its predecessor, C5.0 could be used for trees or for rules. There are a variety of advances to this model (detailed in Kuhn and Johnson (2013)), but the most significant was the inclusion of boosting. In effect, you could create an ensemble of classification rules. Rather than approaching the problem via the more modern stochastic gradient boosting paradigm, it is more similar to the classical AdaBoost methodology.&lt;/p&gt;
&lt;p&gt;Since C5.0 is classification only, an example of a single rule set for the iris data is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Rule 1: (50, lift 2.9)
    Petal.Length &amp;lt;= 1.9
    -&amp;gt;  class setosa  [0.981]

Rule 2: (48/1, lift 2.9)
    Petal.Length &amp;gt; 1.9
    Petal.Length &amp;lt;= 4.9
    Petal.Width &amp;lt;= 1.7
    -&amp;gt;  class versicolor  [0.960]

Rule 3: (46/1, lift 2.9)
    Petal.Width &amp;gt; 1.7
    -&amp;gt;  class virginica  [0.958]

Rule 4: (46/2, lift 2.8)
    Petal.Length &amp;gt; 4.9
    -&amp;gt;  class virginica  [0.938]

Default class: setosa&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If used on the iris data, a boosting ensemble with 50 constituent models used a total of 276 rules and each iteration averaged 5.52 rules per rule set.&lt;/p&gt;
&lt;p&gt;The primary method of controlling the complexity of each rule set is to adjust the minimum number of data points required to make additional splits within a node. The default for this parameter is two data points. If this value was increased to 20, the mean number of rules was reduced from 5.52 rules to 3.2 rules.&lt;/p&gt;
&lt;p&gt;When tuning, the other main tuning parameter is the number of boosting iterations. The C50 R package enables &lt;a href=&#34;https://tune.tidymodels.org/articles/extras/optimizations.html&#34;&gt;sub-model predictions&lt;/a&gt; across boosting iterations; tuning this parameter over many values is not very computation expensive.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;cubist&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Cubist&lt;/h2&gt;
&lt;p&gt;The aforementioned Ross Quinlan also developed &lt;em&gt;model trees&lt;/em&gt; (Quinlan, 1992). These are regression tree-based models that contain &lt;em&gt;linear regression models&lt;/em&gt; in the terminal nodes. This model was called M5 and, much like C5.0, there was a rule-based analog. Most tree-based models, especially ensembles of trees, tend to produce models that underfit in the tails (much like regression to the mean). Model trees do not suffer from this issue since their terminal regression models could make predictions across the whole range of the outcome data.&lt;/p&gt;
&lt;p&gt;After an initial set of papers in the 1990’s, Quinlan didn’t publish much on the methodology as he evolved it. The modern version of model rules was called &lt;a href=&#34;https://www.rulequest.com/cubist-unix.html&#34;&gt;&lt;em&gt;Cubist&lt;/em&gt;&lt;/a&gt;. There were a number of small technical differences between Cubist and M5 rules (enumerated in Kuhn and Johnson (2013)) but the main improvements were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;An ensemble method for predictions called &lt;em&gt;committees&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A nearest-neighbor adjustment that occurs after the model predictions.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We’ll summarize these approaches in-turn.&lt;/p&gt;
&lt;p&gt;Committee ensembles are similar to boosting. In boosting, a set of models are created sequentially. For the current iteration of boosting, the model is created using case weights that are defined by the results of previous models. In committees, case weights are not changed. Instead the outcome values are modified for each iteration of committees. For example, if a sample is under-predicted previously, its outcome value is changed to be larger so that the model will be pulled upward in an effort to stop under-predicting.&lt;/p&gt;
&lt;p&gt;In committees, the first model uses the original outcome value &lt;span class=&#34;math inline&#34;&gt;\(y\)&lt;/span&gt;. On further iterations, a modified value &lt;span class=&#34;math inline&#34;&gt;\(y^*\)&lt;/span&gt; is used instead. For iteration &lt;span class=&#34;math inline&#34;&gt;\(m\)&lt;/span&gt;, the model uses this adjustment formula:&lt;/p&gt;
&lt;p&gt;&lt;span class=&#34;math display&#34;&gt;\[
y^*_{(m)} = y - (\widehat{y}_{(m-1)} - y)
\]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;As a demonstration, the plot below shows how the pseudo-outcome changes over iterations. The observed price of the house in question is 5.3. On the first iteration, the model under-predicts (show as the solid black dot). The vertical line represents the residual from this model. On the next iteration, the open blue circle shows the value of &lt;span class=&#34;math inline&#34;&gt;\(y^*_{(2)}\)&lt;/span&gt;. On the second iteration, the prediction for this data point becomes &lt;em&gt;worse&lt;/em&gt; but, as iterations proceed, the residuals generally become smaller.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/post/2020-05-15-rule-based-models/index_files/figure-html/committee-plot-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Ensemble predictions are made by averaging over the committee model predictions. This concludes in the &lt;em&gt;model-based&lt;/em&gt; prediction made by Cubist.&lt;/p&gt;
&lt;p&gt;After the model prediction, there is an option to conduct a post-model nearest-neighbor adjustment (Quinlan, 1993a). When predicting a new data point, the &lt;em&gt;K&lt;/em&gt;-nearest neighbors are found in the training set (along with their original predictions). If the training set predictions for the neighbors are denoted as &lt;span class=&#34;math inline&#34;&gt;\(t\)&lt;/span&gt;, the adjustment is:&lt;/p&gt;
&lt;p&gt;&lt;span class=&#34;math display&#34;&gt;\[
\widehat{y}_{adj} = \frac{1}{K}\sum_{\ell=1}^K w_\ell \left[t_\ell  + \left(\widehat{y} - \widehat{t}_\ell \right)\right]
\]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;where the weights &lt;span class=&#34;math inline&#34;&gt;\(w_\ell\)&lt;/span&gt; are based on the inverse distances (so that far points contribute less to the adjustment). The adjustment is large when the difference between the original and new predictions is large. As the difference between the predictions of the new sample and its closest neighbor increases, the adjustment becomes larger.&lt;/p&gt;
&lt;p&gt;Suppose our model used only square footage and longitude as predictors. The training data are shown below with a new prediction point represented as a large red square. The 6-closest neighbors in the training set are shown as red circles. The size of the circle represents the magnitude of the weight. This shows that the nearby points influence the adjustment more than distant points.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/post/2020-05-15-rule-based-models/index_files/figure-html/nn-plot-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;This adjustment generally improves performance of the model. Interestingly, there is often a pattern when tuning where the 1-nearest neighbor model does much worse than using no adjustment but two or more neighbors do a much better job. One idea is that the use of a single neighbor is likely overfitting to the training set (as would occur with a more traditional K-NN model).&lt;/p&gt;
&lt;p&gt;Using both of these techniques, Cubist tends to produce &lt;em&gt;very&lt;/em&gt; competitive in terms of performance. The two primary parameters are the number of committee members and the number of nearest neighbors to use in the adjustment. The Cubist package can use the same fitted model to make predictions across the number of neighbors, so there is little computational cost when tuning this parameter.&lt;/p&gt;
&lt;p&gt;For the Sacramento data, a single model (e.g. one committee) consisted of 6 rules, each with its own linear regression model. For example, the first four rules are:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;##   Rule 1: [198 cases, mean 5.187264, range 4.681241 to 5.759668, est err 0.131632]
## 
##     if
##  sqft &amp;lt;= 1712
##  latitude &amp;gt; 38.46639
##  latitude &amp;lt;= 38.61377
##  longitude &amp;gt; -121.5035
##     then
##  outcome = -48.838393 + 0.000376 sqft + 1.39 latitude
## 
##   Rule 2: [254 cases, mean 5.220439, range 4.477121 to 5.923762, est err 0.105572]
## 
##     if
##  sqft &amp;lt;= 1712
##  latitude &amp;gt; 38.61377
##  longitude &amp;gt; -121.5035
##  longitude &amp;lt;= -121.0504
##     then
##  outcome = 93.155414 + 0.000431 sqft + 0.78 longitude + 0.16 latitude
## 
##   Rule 3: [90 cases, mean 5.273133, range 4.851258 to 5.580444, est err 0.078920]
## 
##     if
##  sqft &amp;lt;= 1712
##  latitude &amp;lt;= 38.46639
##     then
##  outcome = 15.750124 + 0.000344 sqft + 0.09 longitude - 0.005 beds
##            + 0.005 baths
## 
##   Rule 4: [35 cases, mean 5.340909, range 5.018076 to 5.616476, est err 0.086056]
## 
##     if
##  sqft &amp;lt;= 1712
##  longitude &amp;lt;= -121.5035
##     then
##  outcome = 4.865655 + 0.000357 sqft&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;New samples being predicted will fall into one or more rule conditions and the final prediction is the average of all of the corresponding linear model predictions.&lt;/p&gt;
&lt;p&gt;If the model is run for 50 committees, a total of 271 rules were used across the committees with the average of 5.42 rules per committee member.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;rulefit&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;RuleFit&lt;/h2&gt;
&lt;p&gt;RuleFit models (Friedman and Popescu, 2008) are fairly simple in concept: use a tree ensemble to create a large set of rules, use the rules as binary predictors, then fit a regularized model that only includes the most important rule features.&lt;/p&gt;
&lt;p&gt;For example, if a boosted tree were used to generate rules, each path through each tree would generate a conditional statement that can be used to define a model predictor (as was shown above for &lt;code&gt;rpart&lt;/code&gt;). If an &lt;code&gt;xgboost&lt;/code&gt; model with 100 boosting iterations with a limit of three splits were used on the Sacramento data, an initial set of 609 rules were generated. Some examples:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sqft &amp;gt;= 1594&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;longitude &amp;lt; -121.2 &amp;amp; latitude &amp;gt;= 38.73 &amp;amp; latitude &amp;gt;= 38.86&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;longitude &amp;gt;= -121.2 &amp;amp; longitude &amp;lt; -121 &amp;amp; baths &amp;lt; 2.75&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;longitude &amp;lt; -121.3 &amp;amp; sqft &amp;gt;= 1246 &amp;amp; type == &amp;quot;Multi_Family&amp;quot;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Clearly, the rules show some redundancy; there tends to be a significant amount of similarity in the rules.&lt;/p&gt;
&lt;p&gt;These predictors are added to a regularized regression model (e.g. linear or logistic) that will conduct feature selection to remove unhelpful or redundant rules. Based on how much the model is penalized, the user can choose the number of rules that are contained in the final model. For example, depending on the penalty, the final rule set for the Sacramento data can be as large as hundreds or as small as a handful.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/post/2020-05-15-rule-based-models/index_files/figure-html/num-rules-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;We can generate glmnet variable importance scores and then parameterize the importance in terms of the original predictors (instead of the rules). For example: for a penalty value of &lt;span class=&#34;math inline&#34;&gt;\(\lambda\)&lt;/span&gt; = 0.005:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/post/2020-05-15-rule-based-models/index_files/figure-html/xrf-preds-small-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;RuleFit has many tuning parameters; it inherits them from the boosting model as well as one from &lt;code&gt;glmnet&lt;/code&gt; (the amount of lasso regularization). Fortunately, multiple predictions can be made across the lasso penalty using the same model object.&lt;/p&gt;
&lt;p&gt;All-in-all, RuleFit is a neat and powerful method for using rules as features. It is interesting to contrast this model and Cubist:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Cubist creates rules as data subsets then estimates a linear regression models within each.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;RuleFit creates rules as predictors then fits one (generalized) linear model.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;acknowledgments&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Acknowledgments&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://www.rulequest.com/Personal/&#34;&gt;Ross Quinlan&lt;/a&gt; has been supportive of our efforts to publish the inner workings of C5.0 and Cubist. I’d like to thank him for his help and all of the excellent work he has done over the years.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;References&lt;/h2&gt;
&lt;p&gt;Friedman JH; Popescu BE (2008) “&lt;a href=&#34;https://scholar.google.com/scholar?hl=en&amp;amp;as_sdt=0%2C7&amp;amp;q=%22Predictive+learning+via+rule+ensembles%22&amp;amp;btnG=&#34;&gt;Predictive learning via rule ensembles&lt;/a&gt;.” _Annals of Applied Statistic_s, pp. 916-954.&lt;/p&gt;
&lt;p&gt;Kuhn M; Johnson K (2013) &lt;em&gt;&lt;a href=&#34;https://scholar.google.com/scholar?hl=en&amp;amp;as_sdt=0%2C7&amp;amp;q=%22Applied+Predictive+Modeling%22+author%3Akuhn&amp;amp;btnG=&#34;&gt;Applied Predictive Modeling&lt;/a&gt;&lt;/em&gt;, Springer. New York.&lt;/p&gt;
&lt;p&gt;Quinlan R (1979). “Discovering rules by induction from large collections of examples.” &lt;em&gt;Expert Systems in the Micro Electronics Age&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Quinlan R (1992). “&lt;a href=&#34;https://scholar.google.com/scholar?hl=en&amp;amp;as_sdt=0%2C7&amp;amp;q=%22Learning+with+continuous+classes%22&amp;amp;btnG=&#34;&gt;Learning with continuous classes&lt;/a&gt;.” &lt;em&gt;Proceedings of the 5th Australian Joint Conference On Artificial Intelligence&lt;/em&gt;, pp. 343-348.&lt;/p&gt;
&lt;p&gt;Quinlan R (1993a). “&lt;a href=&#34;https://scholar.google.com/scholar?hl=en&amp;amp;as_sdt=0%2C7&amp;amp;q=%22Combining+instance-based+and+model-based+learning%22&amp;amp;btnG=&#34;&gt;Combining instance-based and model-based learning&lt;/a&gt;.” &lt;em&gt;Proceedings of the Tenth International Conference on Machine Learning&lt;/em&gt;, pp. 236-243.&lt;/p&gt;
&lt;p&gt;Quinlan R (1993b). &lt;em&gt;&lt;a href=&#34;https://scholar.google.com/scholar?hl=en&amp;amp;as_sdt=0%2C7&amp;amp;q=%22C4.5%3A+Programs+for+Machine+Learning%22&amp;amp;btnG=&#34;&gt;C4.5: Programs for Machine Learning&lt;/a&gt;&lt;/em&gt;. Morgan Kaufmann Publishers.&lt;/p&gt;
&lt;/div&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2020/05/21/modern-rule-based-models/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>The Case for tidymodels</title>
      <link>https://rviews.rstudio.com/2020/04/21/the-case-for-tidymodels/</link>
      <pubDate>Tue, 21 Apr 2020 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2020/04/21/the-case-for-tidymodels/</guid>
      <description>
        


&lt;p&gt;If you are a data scientist with a built-out set of modeling tools that you know well, and which are almost always adequate for getting your work done, it is probably difficult for you to imagine what would induce you to give them up. Changing out what works is a task that rarely generates much enthusiasm. Nevertheless, in this post, I would like to point out a few features of &lt;a href=&#34;https://www.tidymodels.org/&#34;&gt;&lt;code&gt;tidymodels&lt;/code&gt;&lt;/a&gt; that could help even experienced data scientists make the case to give &lt;code&gt;tidymodels&lt;/code&gt; a try.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;tidymodels.png&#34; height = &#34;200&#34; width=&#34;400&#34;&gt;&lt;/p&gt;
&lt;p&gt;So what are we talking about? &lt;code&gt;tidymodels&lt;/code&gt; are an integrated, modular, extensible set of packages that implement a framework that facilitates creating predicative stochastic models. &lt;code&gt;tidymodels&lt;/code&gt; are first class members of the &lt;code&gt;tidyverse&lt;/code&gt;. They adhere to &lt;code&gt;tidyverse&lt;/code&gt; syntax and design principles that promote consistency and well-designed human interfaces over speed of code execution. Nevertheless, they automatically build in parallel execution for tasks such as resampling, cross validation and parameter tuning. Moreover, they don’t just work through the steps of the basic modeling workflow, they implement conceptual structures that make complex iterative workflows possible &lt;em&gt;and&lt;/em&gt; reproducible.&lt;/p&gt;
&lt;p&gt;If you are an R user and you have building predictive models then there is a good chance that you are familiar with the &lt;a href=&#34;https://CRAN.R-project.org/package=caret&#34;&gt;&lt;code&gt;caret&lt;/code&gt;&lt;/a&gt; package. One straightforward path to investigate tidymodels is to follow the thread that leads form &lt;code&gt;caret&lt;/code&gt; to &lt;a href=&#34;https://CRAN.R-project.org/package=parsnip&#34;&gt;&lt;code&gt;parsnip&lt;/code&gt;&lt;/a&gt;. &lt;code&gt;caret&lt;/code&gt;, the result of a monumental fifteen year plus effort, incorporates two hundred thirty-eight &lt;a href=&#34;https://topepo.github.io/caret/available-models.html&#34;&gt;predictive models&lt;/a&gt; into a common framework. For example, any one of the included models can be substituted for &lt;code&gt;lm&lt;/code&gt; in the following expression.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lmFit &amp;lt;- train(Y ~ X1 + X2, data = training, 
                 method = &amp;quot;lm&amp;quot;, 
                 trControl = fitControl)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;By itself this is a pretty big deal. &lt;code&gt;parsnip&lt;/code&gt; refines this idea by creating a specification structure that identifies a class of models that allows users to easily change algorithms and also permits the models to run on different “engines”.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;spec_lin_reg &amp;lt;- linear_reg() %&amp;gt;%   # a linear model specification
                set_engine( &amp;quot;lm&amp;quot;)  # set the model to use lm
# fit the model
lm_fit &amp;lt;- fit(spec_lin_reg, Y ~ X1 + X2, data = my_data)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This same specification can be modified to run a Bayesian model using &lt;a href=&#34;https://mc-stan.org/&#34;&gt;&lt;code&gt;Stan&lt;/code&gt;&lt;/a&gt;, or any number of other linear model backends such as &lt;code&gt;glmnet&lt;/code&gt;, &lt;code&gt;keras&lt;/code&gt; or &lt;code&gt;spark&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;spec_stan &amp;lt;- 
  spec_lin_reg %&amp;gt;%
  set_engine(&amp;quot;stan&amp;quot;, chains = 4, iter = 1000) # set engine specific arguments
fit_stan &amp;lt;- fit(spec_stan, Y ~ X1 + X2, data = my_data)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;On its own, &lt;code&gt;parnsnip&lt;/code&gt; provides a time saving framework for exploring multiple models. It is really nice not to have to worry about the idiosyncratic syntax developed for different model algorithms. But, the real power of tidymodels is baked into the &lt;a href=&#34;https://CRAN.R-project.org/package=parsnip&#34;&gt;&lt;code&gt;recipes&lt;/code&gt;&lt;/a&gt; package. Recipes are structures that bind a sequence of preprocessing steps to a training data set. They define the roles that the variables are to play in the design matrix, specify what data cleaning needs to take place, and what feature engineering needs to happen.&lt;/p&gt;
&lt;p&gt;To see how all of this comes together, lets look at recipe used in the &lt;code&gt;tidymodels&lt;/code&gt; &lt;a href=&#34;https://www.tidymodels.org/start/recipes/&#34;&gt;&lt;code&gt;recipes&lt;/code&gt;&lt;/a&gt; tutorial that uses the New York City flights data set, &lt;a href=&#34;https://CRAN.R-project.org/package=nycflights13&#34;&gt;&lt;code&gt;nycflights13&lt;/code&gt;&lt;/a&gt;. We assume that all of the data wrangling code in the tutorial has been executed, and we pick up with the code to define the recipe:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;flights_rec &amp;lt;- 
  recipe(arr_delay ~ ., data = train_data) %&amp;gt;% 
  update_role(flight, time_hour, new_role = &amp;quot;ID&amp;quot;) %&amp;gt;% 
  step_date(date, features = c(&amp;quot;dow&amp;quot;, &amp;quot;month&amp;quot;)) %&amp;gt;% 
  step_rm(date) %&amp;gt;% 
  step_dummy(all_nominal(), -all_outcomes())&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The first line identifies the variable arr_delay as the variable to be predicted and the other variables in the data set train_data to be predictors. The second line amends that by updating the roles of the variables flight and time_hour to be identifiers and not predictors. The third and fourth lines continue with the feature engineering by creating a new date variable and removing the old one. The last line explicitly converts all categorical or factor variables into binary dummy variables.&lt;/p&gt;
&lt;p&gt;The recipe is ready to be evaluated, but if a modeler thought that she might want to keep track of this workflow for the future, she might bind the recipe and model together in a &lt;code&gt;workflow()&lt;/code&gt; that saves everything as a reproducible unit with a command something like this.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lr_mod &amp;lt;- logistic_reg() %&amp;gt;% set_engine(&amp;quot;glm&amp;quot;)

flights_wflow &amp;lt;- 
  workflow() %&amp;gt;% 
  add_model(lr_mod) %&amp;gt;% 
  add_recipe(flights_rec)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then, fitting the model is just a matter calling &lt;code&gt;fit&lt;/code&gt; with the workflow as a parameter.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;flights_fit &amp;lt;- fit(flights_wflow, data = train_data)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;At this point, everything is in place to complete a statistical analysis. A modeler can extract coefficients, p-values etc., calculate performance statistics, make statistical inferences and easily save the workflow in a reproducible &lt;code&gt;markdown&lt;/code&gt; document. However the real gains from &lt;code&gt;tidymodels&lt;/code&gt; become apparent when the modeler goes on to build predictive models.&lt;/p&gt;
&lt;p&gt;The following diagram from &lt;a href=&#34;https://bookdown.org/max/FES/resampling.html&#34;&gt;Kuhn and Johnson (2019)&lt;/a&gt; illustrates a typical predictive modeling workflow.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;resampling.svg&#34; height = &#34;600&#34; width=&#34;800&#34;&gt;&lt;/p&gt;
&lt;p&gt;It indicates that before going on to predict model performance on new data (the test set), a modeler will want to make use of cross validation or some other resampling technique to first evaluate the performance of multiple candidate models, and then tune the selected model. This is where the great power of the &lt;code&gt;recipe()&lt;/code&gt; and &lt;code&gt;workflow()&lt;/code&gt; constructs becomes apparent. In addition, to encouraging experiments with multiple models by rationalizing algorithm syntax, providing interchangeable model constructs, and enabling modelers to grow chains of recipe steps with the pipe operator; &lt;code&gt;recipies&lt;/code&gt; &lt;em&gt;helps to enforce good statistical practice&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;For example, although it is common practice to split the available data between training and test sets before preprocessing the training data set, it is also very common to see pipelines where data preparation is applied to the entire training set at one go. It is not common to see data cleaning and preparation processes individually applied to each fold of a ten-fold cross validation effort. But, that is exactly the right thing to do to mitigate the deleterious effects of data imputation, centering and scaling and numerous other preparation steps that contribute to bias and limit the predictive value of a model. This is the whole point of resampling, but it is not easy to do in a way that saves necessary intermediate artifacts, and provides a reproducible set of instructions for others on the modeling team.&lt;/p&gt;
&lt;p&gt;Because, &lt;em&gt;recipes are not evaluated until the model is fit&lt;/em&gt; &lt;code&gt;tidymodel&lt;/code&gt; workflows make an otherwise laborious and error prone process very straightforward. This is a game changer!&lt;/p&gt;
&lt;p&gt;The next two lines of code set up and execute ten-fold cross-validation for our example.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;set.seed(123)
folds &amp;lt;- vfold_cv(train_data, v = 10)
flights_fit_rs &amp;lt;- fit_resamples(flights_wflow, folds)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And then, another line of code collects the metrics over the folds and prints out the statistics for accuracy and area under the ROC curve.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;collect_metrics(flights_fit_rs)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&#34;cv.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;
&lt;p&gt;So, here we are with a mediocre model, and I’ll stop now having shown you only a small portion of what &lt;code&gt;tidymodels&lt;/code&gt; can do, but enough, I hope to motivate you to take a closer look. &lt;a href=&#34;https://www.tidymodels.org/&#34;&gt;tidymodels.org&lt;/a&gt; is a superbly crafted website with multiple layers of documentation. There are sections on &lt;a href=&#34;https://www.tidymodels.org/packages/&#34;&gt;packages&lt;/a&gt;, getting started &lt;a href=&#34;https://www.tidymodels.org/start/&#34;&gt;guides&lt;/a&gt;, detailed &lt;a href=&#34;https://www.tidymodels.org/learn/&#34;&gt;tutorials&lt;/a&gt;, &lt;a href=&#34;https://www.tidymodels.org/help/&#34;&gt;help&lt;/a&gt; pages and a section on making &lt;a href=&#34;https://www.tidymodels.org/contribute/&#34;&gt;contributions&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Happy modeling!&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2020/04/21/the-case-for-tidymodels/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>A Gentle Introduction to tidymodels</title>
      <link>https://rviews.rstudio.com/2019/06/19/a-gentle-intro-to-tidymodels/</link>
      <pubDate>Wed, 19 Jun 2019 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2019/06/19/a-gentle-intro-to-tidymodels/</guid>
      <description>
        


&lt;p&gt;&lt;img src=&#34;/post/2019-06-14-a-gentle-intro-to-tidymodels_files/figure-html/ds.png&#34; /&gt;&lt;!-- --&gt;&lt;/p&gt;
&lt;p&gt;Recently, I had the opportunity to showcase &lt;code&gt;tidymodels&lt;/code&gt; in workshops and talks. Because of my vantage point as a user, I figured it would be valuable to share what I have learned so far. Let’s begin by framing where &lt;code&gt;tidymodels&lt;/code&gt; fits in our analysis projects.&lt;/p&gt;
&lt;p&gt;The diagram above is based on the &lt;a href=&#34;https://r4ds.had.co.nz/explore-intro.html&#34;&gt;R for Data Science&lt;/a&gt; book, by Wickham and Grolemund. The version in this article illustrates what step each package covers. Even though it is a single step, developing models can benefit from having a &lt;code&gt;tidyverse&lt;/code&gt;-friendly interface. That is where &lt;code&gt;tidymodels&lt;/code&gt; comes in.&lt;/p&gt;
&lt;p&gt;It is important to clarify that the group of packages that make up &lt;code&gt;tidymodels&lt;/code&gt; do not implement statistical models themselves. Instead, they focus on making all the tasks around fitting the model much easier. Those tasks are data &lt;em&gt;pre-processing&lt;/em&gt; and &lt;em&gt;results validation&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;In a way, the &lt;strong&gt;Model&lt;/strong&gt; step itself has sub-steps. For these sub-steps, &lt;code&gt;tidymodels&lt;/code&gt; provides one or several packages. This article will showcase functions from four &lt;code&gt;tidymodels&lt;/code&gt; packages:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;rsample&lt;/code&gt; - Different types of re-samples&lt;/li&gt;
&lt;li&gt;&lt;code&gt;recipes&lt;/code&gt; - Transformations for model data pre-processing&lt;/li&gt;
&lt;li&gt;&lt;code&gt;parnip&lt;/code&gt; - A common interface for model creation&lt;/li&gt;
&lt;li&gt;&lt;code&gt;yardstick&lt;/code&gt; - Measure model performance&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following diagram illustrates each modeling step, and lines up the &lt;code&gt;tidymodels&lt;/code&gt; packages that we will use in this article:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;/post/2019-06-14-a-gentle-intro-to-tidymodels_files/figure-html/tidymodels.png&#34; /&gt;&lt;!-- --&gt;&lt;/p&gt;
&lt;p&gt;In a given analysis, a &lt;code&gt;tidyverse&lt;/code&gt; package may or may not be used. Not all projects need to work with time variables, so there is no need to use functions from the &lt;code&gt;hms&lt;/code&gt; package. The same idea applies to &lt;code&gt;tidymodels&lt;/code&gt;. Depending on what type of modeling is going to be done, only functions from some its packages will be used.&lt;/p&gt;
&lt;div id=&#34;an-example&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;An Example&lt;/h2&gt;
&lt;p&gt;We will use the &lt;code&gt;iris&lt;/code&gt; data set for an example. Its data is already imported, and sufficiently tidy to move directly to modeling.&lt;/p&gt;
&lt;div id=&#34;load-only-the-tidymodels-library&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Load &lt;em&gt;only&lt;/em&gt; the &lt;code&gt;tidymodels&lt;/code&gt; library&lt;/h3&gt;
&lt;p&gt;This may be the first article I have written where only one package is called via &lt;code&gt;library()&lt;/code&gt;. Apart from loading its core modeling packages, &lt;code&gt;tidymodels&lt;/code&gt; also conveniently loads some &lt;code&gt;tidyverse&lt;/code&gt; packages, including &lt;code&gt;dplyr&lt;/code&gt; and &lt;code&gt;ggplot2&lt;/code&gt;. Throughout this exercise, we will use some functions out of those packages, but we don’t have to explicitly load them into our R session.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(tidymodels)&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div id=&#34;pre-process&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Pre-Process&lt;/h3&gt;
&lt;p&gt;This step focuses on making data suitable for modeling by using data transformations. All transformations can be accomplished with &lt;code&gt;dplyr&lt;/code&gt;, or other &lt;code&gt;tidyverse&lt;/code&gt; packages Consider using &lt;code&gt;tidymodels&lt;/code&gt; packages when model development is more heavy and complex.&lt;/p&gt;
&lt;div id=&#34;data-sampling&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Data Sampling&lt;/h4&gt;
&lt;p&gt;The &lt;code&gt;initial_split()&lt;/code&gt; function is specially built to separate the data set into a &lt;em&gt;training&lt;/em&gt; and &lt;em&gt;testing&lt;/em&gt; set. By default, it holds 3/4 of the data for training and the rest for testing. That can be changed by passing the &lt;code&gt;prop&lt;/code&gt; argument. This function generates an &lt;code&gt;rplit&lt;/code&gt; object, not a data frame. The printed output shows the row count for testing, training, and total.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_split &amp;lt;- initial_split(iris, prop = 0.6)
iris_split&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## &amp;lt;90/60/150&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;To access the observations reserved for training, use the &lt;code&gt;training()&lt;/code&gt; function. Similarly, use &lt;code&gt;testing()&lt;/code&gt; to access the testing data.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_split %&amp;gt;%
  training() %&amp;gt;%
  glimpse()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 90
## Variables: 5
## $ Sepal.Length &amp;lt;dbl&amp;gt; 5.1, 4.9, 4.7, 4.6, 5.0, 5.4, 4.6, 5.0, 4.9, 5.4, 4…
## $ Sepal.Width  &amp;lt;dbl&amp;gt; 3.5, 3.0, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 3.1, 3.7, 3…
## $ Petal.Length &amp;lt;dbl&amp;gt; 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.5, 1.5, 1…
## $ Petal.Width  &amp;lt;dbl&amp;gt; 0.2, 0.2, 0.2, 0.2, 0.2, 0.4, 0.3, 0.2, 0.1, 0.2, 0…
## $ Species      &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa, set…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;These sampling functions are courtesy of the &lt;code&gt;rsample&lt;/code&gt; package, which is part of &lt;code&gt;tidymodels&lt;/code&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;pre-process-interface&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Pre-process interface&lt;/h4&gt;
&lt;p&gt;In &lt;code&gt;tidymodels&lt;/code&gt;, the &lt;code&gt;recipes&lt;/code&gt; package provides an interface that specializes in data pre-processing. Within the package, the functions that start, or execute, the data transformations are named after cooking actions. That makes the interface more user-friendly. For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;recipe()&lt;/code&gt; - Starts a new set of transformations to be applied, similar to the &lt;code&gt;ggplot()&lt;/code&gt; command. Its main argument is the model’s formula.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;prep()&lt;/code&gt; - Executes the transformations on top of the data that is supplied (typically, the training data).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each data transformation is a step. Functions correspond to specific types of steps, each of which has a prefix of &lt;code&gt;step_&lt;/code&gt;. There are several &lt;code&gt;step_&lt;/code&gt; functions; in this example, we will use three of them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;step_corr()&lt;/code&gt; - Removes variables that have large absolute correlations with other variables&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;step_center()&lt;/code&gt; - Normalizes numeric data to have a mean of zero&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;step_scale()&lt;/code&gt; - Normalizes numeric data to have a standard deviation of one&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Another nice feature is that the step can be applied to a specific variable, groups of variables, or all variables. The &lt;code&gt;all_outocomes()&lt;/code&gt; and &lt;code&gt;all_predictors()&lt;/code&gt; functions provide a very convenient way to specify groups of variables. For example, if we want the &lt;code&gt;step_corr()&lt;/code&gt; to only analyze the predictor variables, we use &lt;code&gt;step_corr(all_predictors())&lt;/code&gt;. This capability saves us from having to enumerate each variable.&lt;/p&gt;
&lt;p&gt;In the following example, we will put together the &lt;code&gt;recipe()&lt;/code&gt;, &lt;code&gt;prep()&lt;/code&gt;, and step functions to create a &lt;code&gt;recipe&lt;/code&gt; object. The &lt;code&gt;training()&lt;/code&gt; function is used to extract that data set from the previously created split sample data set.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_recipe &amp;lt;- training(iris_split) %&amp;gt;%
  recipe(Species ~.) %&amp;gt;%
  step_corr(all_predictors()) %&amp;gt;%
  step_center(all_predictors(), -all_outcomes()) %&amp;gt;%
  step_scale(all_predictors(), -all_outcomes()) %&amp;gt;%
  prep()&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If we call the &lt;code&gt;iris_recipe&lt;/code&gt; object, it will print details about the recipe. The &lt;strong&gt;Operations&lt;/strong&gt; section describes what was done to the data. One of the operations entries in the example explains that the correlation step removed the &lt;code&gt;Petal.Length&lt;/code&gt; variable.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_recipe&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Data Recipe
## 
## Inputs:
## 
##       role #variables
##    outcome          1
##  predictor          4
## 
## Training data contained 90 data points and no missing data.
## 
## Operations:
## 
## Correlation filter removed Petal.Length [trained]
## Centering for Sepal.Length, Sepal.Width, Petal.Width [trained]
## Scaling for Sepal.Length, Sepal.Width, Petal.Width [trained]&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;execute-the-pre-processing&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Execute the pre-processing&lt;/h3&gt;
&lt;p&gt;The testing data can now be transformed using the exact same steps, weights, and categorization used to pre-process the training data. To do this, another function with a cooking term is used: &lt;code&gt;bake()&lt;/code&gt;. Notice that the &lt;code&gt;testing()&lt;/code&gt; function is used in order to extract the appropriate data set.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_testing &amp;lt;- iris_recipe %&amp;gt;%
  bake(testing(iris_split)) 

glimpse(iris_testing)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 60
## Variables: 4
## $ Sepal.Length &amp;lt;dbl&amp;gt; -1.597601746, -1.138960096, 0.007644027, -0.7949788…
## $ Sepal.Width  &amp;lt;dbl&amp;gt; -0.41010139, 0.71517681, 2.06551064, 1.61539936, 0.…
## $ Petal.Width  &amp;lt;dbl&amp;gt; -1.2085003, -1.2085003, -1.2085003, -1.0796318, -1.…
## $ Species      &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa, set…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Performing the same operation over the training data is redundant, because that data has already been prepped. To load the prepared training data into a variable, we use &lt;code&gt;juice()&lt;/code&gt;. It will extract the data from the &lt;code&gt;iris_recipe&lt;/code&gt; object.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_training &amp;lt;- juice(iris_recipe)

glimpse(iris_training)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 90
## Variables: 4
## $ Sepal.Length &amp;lt;dbl&amp;gt; -0.7949789, -1.0242997, -1.2536205, -1.3682809, -0.…
## $ Sepal.Width  &amp;lt;dbl&amp;gt; 0.94023245, -0.18504575, 0.26506553, 0.04000989, 1.…
## $ Petal.Width  &amp;lt;dbl&amp;gt; -1.2085003, -1.2085003, -1.2085003, -1.2085003, -1.…
## $ Species      &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa, set…&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div id=&#34;model-training&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Model Training&lt;/h3&gt;
&lt;p&gt;In R, there are multiple packages that fit the same type of model. It is common for each package to provide a unique interface. In other words, things such as an argument for the same model attribute is defined differently for each package. For example, the &lt;code&gt;ranger&lt;/code&gt; and &lt;code&gt;randomForest&lt;/code&gt; packages fit Random Forest models. In the &lt;code&gt;ranger()&lt;/code&gt; function, to define the number of trees we use &lt;code&gt;num.trees&lt;/code&gt;. In &lt;code&gt;randomForest&lt;/code&gt;, that argument is named &lt;code&gt;ntree&lt;/code&gt;. It is not easy to switch between packages to run the same model.&lt;/p&gt;
&lt;p&gt;Instead of replacing the modeling package, &lt;code&gt;tidymodels&lt;/code&gt; replaces the interface. Better said, &lt;code&gt;tidymodels&lt;/code&gt; provides a single set of functions and arguments to define a model. It then fits the model against the requested modeling package.&lt;/p&gt;
&lt;p&gt;In the example below, the &lt;code&gt;rand_forest()&lt;/code&gt; function is used to initialize a Random Forest model. To define the number of trees, the &lt;code&gt;trees&lt;/code&gt; argument is used. To use the &lt;code&gt;ranger&lt;/code&gt; version of Random Forest, the &lt;code&gt;set_engine()&lt;/code&gt; function is used. Finally, to execute the model, the &lt;code&gt;fit()&lt;/code&gt; function is used. The expected arguments are the formula and data. Notice that the model runs on top of the &lt;em&gt;juiced&lt;/em&gt; trained data.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_ranger &amp;lt;- rand_forest(trees = 100, mode = &amp;quot;classification&amp;quot;) %&amp;gt;%
  set_engine(&amp;quot;ranger&amp;quot;) %&amp;gt;%
  fit(Species ~ ., data = iris_training)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The payoff is that if we now want to run the same model against &lt;code&gt;randomForest&lt;/code&gt;, we simply change the value in &lt;code&gt;set_engine()&lt;/code&gt; to “randomForest”.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_rf &amp;lt;-  rand_forest(trees = 100, mode = &amp;quot;classification&amp;quot;) %&amp;gt;%
  set_engine(&amp;quot;randomForest&amp;quot;) %&amp;gt;%
  fit(Species ~ ., data = iris_training)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;It is also worth mentioning that the model is not defined in a single, large function with a lot of arguments. The model definition is separated into smaller functions such as &lt;code&gt;fit()&lt;/code&gt; and &lt;code&gt;set_engine()&lt;/code&gt;. This allows for a more flexible - and easier to learn - interface.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;predictions&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Predictions&lt;/h3&gt;
&lt;p&gt;Instead of a vector, the &lt;code&gt;predict()&lt;/code&gt; function ran against a &lt;code&gt;parsnip&lt;/code&gt; model returns a &lt;code&gt;tibble&lt;/code&gt;. By default, the prediction variable is called &lt;code&gt;.pred_class&lt;/code&gt;. In the example, notice that the &lt;em&gt;baked&lt;/em&gt; testing data is used.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;predict(iris_ranger, iris_testing)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## # A tibble: 60 x 1
##    .pred_class
##    &amp;lt;fct&amp;gt;      
##  1 setosa     
##  2 setosa     
##  3 setosa     
##  4 setosa     
##  5 setosa     
##  6 setosa     
##  7 setosa     
##  8 setosa     
##  9 setosa     
## 10 setosa     
## # … with 50 more rows&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;It is very easy to add the predictions to the &lt;em&gt;baked&lt;/em&gt; testing data by using &lt;code&gt;dplyr&lt;/code&gt;’s &lt;code&gt;bind_cols()&lt;/code&gt; function.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_ranger %&amp;gt;%
  predict(iris_testing) %&amp;gt;%
  bind_cols(iris_testing) %&amp;gt;%
  glimpse()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 60
## Variables: 5
## $ .pred_class  &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa, set…
## $ Sepal.Length &amp;lt;dbl&amp;gt; -1.597601746, -1.138960096, 0.007644027, -0.7949788…
## $ Sepal.Width  &amp;lt;dbl&amp;gt; -0.41010139, 0.71517681, 2.06551064, 1.61539936, 0.…
## $ Petal.Width  &amp;lt;dbl&amp;gt; -1.2085003, -1.2085003, -1.2085003, -1.0796318, -1.…
## $ Species      &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa, set…&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div id=&#34;model-validation&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;Model Validation&lt;/h3&gt;
&lt;p&gt;Use the &lt;code&gt;metrics()&lt;/code&gt; function to measure the performance of the model. It will automatically choose metrics appropriate for a given type of model. The function expects a &lt;code&gt;tibble&lt;/code&gt; that contains the actual results (&lt;code&gt;truth&lt;/code&gt;) and what the model predicted (&lt;code&gt;estimate&lt;/code&gt;).&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_ranger %&amp;gt;%
  predict(iris_testing) %&amp;gt;%
  bind_cols(iris_testing) %&amp;gt;%
  metrics(truth = Species, estimate = .pred_class)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## # A tibble: 2 x 3
##   .metric  .estimator .estimate
##   &amp;lt;chr&amp;gt;    &amp;lt;chr&amp;gt;          &amp;lt;dbl&amp;gt;
## 1 accuracy multiclass     0.917
## 2 kap      multiclass     0.874&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Because of the consistency of the new interface, measuring the same metrics against the &lt;code&gt;randomForest&lt;/code&gt; model is as easy as replacing the model variable at the top of the code.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_rf %&amp;gt;%
  predict(iris_testing) %&amp;gt;%
  bind_cols(iris_testing) %&amp;gt;%
  metrics(truth = Species, estimate = .pred_class)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## # A tibble: 2 x 3
##   .metric  .estimator .estimate
##   &amp;lt;chr&amp;gt;    &amp;lt;chr&amp;gt;          &amp;lt;dbl&amp;gt;
## 1 accuracy multiclass     0.883
## 2 kap      multiclass     0.824&lt;/code&gt;&lt;/pre&gt;
&lt;div id=&#34;per-classifier-metrics&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Per classifier metrics&lt;/h4&gt;
&lt;p&gt;It is easy to obtain the probability for each possible predicted value by setting the &lt;code&gt;type&lt;/code&gt; argument to &lt;code&gt;prob&lt;/code&gt;. That will return a &lt;code&gt;tibble&lt;/code&gt; with as many variables as there are possible predicted values. Their name will default to the original value name, prefixed with &lt;code&gt;.pred_&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_ranger %&amp;gt;%
  predict(iris_testing, type = &amp;quot;prob&amp;quot;) %&amp;gt;%
  glimpse()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 60
## Variables: 3
## $ .pred_setosa     &amp;lt;dbl&amp;gt; 0.677480159, 0.978293651, 0.783250000, 0.983972…
## $ .pred_versicolor &amp;lt;dbl&amp;gt; 0.295507937, 0.011706349, 0.150833333, 0.001111…
## $ .pred_virginica  &amp;lt;dbl&amp;gt; 0.02701190, 0.01000000, 0.06591667, 0.01491667,…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Again, use &lt;code&gt;bind_cols()&lt;/code&gt; to append the predictions to the &lt;em&gt;baked&lt;/em&gt; testing data set.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_probs &amp;lt;- iris_ranger %&amp;gt;%
  predict(iris_testing, type = &amp;quot;prob&amp;quot;) %&amp;gt;%
  bind_cols(iris_testing)

glimpse(iris_probs)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 60
## Variables: 7
## $ .pred_setosa     &amp;lt;dbl&amp;gt; 0.677480159, 0.978293651, 0.783250000, 0.983972…
## $ .pred_versicolor &amp;lt;dbl&amp;gt; 0.295507937, 0.011706349, 0.150833333, 0.001111…
## $ .pred_virginica  &amp;lt;dbl&amp;gt; 0.02701190, 0.01000000, 0.06591667, 0.01491667,…
## $ Sepal.Length     &amp;lt;dbl&amp;gt; -1.597601746, -1.138960096, 0.007644027, -0.794…
## $ Sepal.Width      &amp;lt;dbl&amp;gt; -0.41010139, 0.71517681, 2.06551064, 1.61539936…
## $ Petal.Width      &amp;lt;dbl&amp;gt; -1.2085003, -1.2085003, -1.2085003, -1.0796318,…
## $ Species          &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa,…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now that everything is in one &lt;code&gt;tibble&lt;/code&gt;, it is easy to calculate curve methods. In this case we are using &lt;code&gt;gain_curve()&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_probs%&amp;gt;%
  gain_curve(Species, .pred_setosa:.pred_virginica) %&amp;gt;%
  glimpse()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 141
## Variables: 5
## $ .level          &amp;lt;chr&amp;gt; &amp;quot;setosa&amp;quot;, &amp;quot;setosa&amp;quot;, &amp;quot;setosa&amp;quot;, &amp;quot;setosa&amp;quot;, &amp;quot;setosa&amp;quot;…
## $ .n              &amp;lt;dbl&amp;gt; 0, 1, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, …
## $ .n_events       &amp;lt;dbl&amp;gt; 0, 1, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, …
## $ .percent_tested &amp;lt;dbl&amp;gt; 0.000000, 1.666667, 5.000000, 6.666667, 8.333333…
## $ .percent_found  &amp;lt;dbl&amp;gt; 0.000000, 5.882353, 17.647059, 23.529412, 29.411…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The curve methods include an &lt;code&gt;autoplot()&lt;/code&gt; function that easily creates a &lt;code&gt;ggplot2&lt;/code&gt; visualization.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_probs%&amp;gt;%
  gain_curve(Species, .pred_setosa:.pred_virginica) %&amp;gt;%
  autoplot()&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&#34;/post/2019-06-14-a-gentle-intro-to-tidymodels_files/figure-html/gain_curve-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;This is an example of a &lt;code&gt;roc_curve()&lt;/code&gt;. Again, because of the consistency of the interface, only the function name needs to be modified; even the argument values remain the same.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;iris_probs%&amp;gt;%
  roc_curve(Species, .pred_setosa:.pred_virginica) %&amp;gt;%
  autoplot()&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&#34;/post/2019-06-14-a-gentle-intro-to-tidymodels_files/figure-html/roc_curve-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;To measured the combined single predicted value and the probability of each possible value, combine the two prediction modes (with and without &lt;code&gt;prob&lt;/code&gt; type). In this example, using &lt;code&gt;dplyr&lt;/code&gt;’s &lt;code&gt;select()&lt;/code&gt; makes the resulting &lt;code&gt;tibble&lt;/code&gt; easier to read.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;predict(iris_ranger, iris_testing, type = &amp;quot;prob&amp;quot;) %&amp;gt;%
  bind_cols(predict(iris_ranger, iris_testing)) %&amp;gt;%
  bind_cols(select(iris_testing, Species)) %&amp;gt;%
  glimpse()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## Observations: 60
## Variables: 5
## $ .pred_setosa     &amp;lt;dbl&amp;gt; 0.677480159, 0.978293651, 0.783250000, 0.983972…
## $ .pred_versicolor &amp;lt;dbl&amp;gt; 0.295507937, 0.011706349, 0.150833333, 0.001111…
## $ .pred_virginica  &amp;lt;dbl&amp;gt; 0.02701190, 0.01000000, 0.06591667, 0.01491667,…
## $ .pred_class      &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa,…
## $ Species          &amp;lt;fct&amp;gt; setosa, setosa, setosa, setosa, setosa, setosa,…&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Pipe the resulting table into &lt;code&gt;metrics()&lt;/code&gt;. In this case, specify &lt;code&gt;.pred_class&lt;/code&gt; as the &lt;code&gt;estimate&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;predict(iris_ranger, iris_testing, type = &amp;quot;prob&amp;quot;) %&amp;gt;%
  bind_cols(predict(iris_ranger, iris_testing)) %&amp;gt;%
  bind_cols(select(iris_testing, Species)) %&amp;gt;%
  metrics(Species, .pred_setosa:.pred_virginica, estimate = .pred_class)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;## # A tibble: 4 x 3
##   .metric     .estimator .estimate
##   &amp;lt;chr&amp;gt;       &amp;lt;chr&amp;gt;          &amp;lt;dbl&amp;gt;
## 1 accuracy    multiclass     0.917
## 2 kap         multiclass     0.874
## 3 mn_log_loss multiclass     0.274
## 4 roc_auc     hand_till      0.980&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;closing-remarks&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Closing remarks&lt;/h2&gt;
&lt;p&gt;This end-to-end example is intended to be a gentle introduction to &lt;code&gt;tidymodels&lt;/code&gt;. The number of functions, and options of such functions, were kept at a minimum for the purposes of this demonstration, but there is much more that can be done with this wonderful group of packages. Hopefully, this article will help you get started, and maybe even encourage you to expand your knowledge further.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;thank-you&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Thank you!&lt;/h2&gt;
&lt;p&gt;I would like to thank &lt;a href=&#34;https://twitter.com/topepos&#34;&gt;Max Kuhn&lt;/a&gt; and &lt;a href=&#34;https://twitter.com/dvaughan32&#34;&gt;Davis Vaughan&lt;/a&gt;, the primary developers of &lt;code&gt;tidymodels&lt;/code&gt;. They have been very gracious in providing instruction, feedback, and guidance throughout my journey of learning &lt;code&gt;tidymodels&lt;/code&gt;.&lt;/p&gt;
&lt;/div&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2019/06/19/a-gentle-intro-to-tidymodels/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>Parsnipping Fama French</title>
      <link>https://rviews.rstudio.com/2019/03/14/parsnipping-fama-french/</link>
      <pubDate>Thu, 14 Mar 2019 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2019/03/14/parsnipping-fama-french/</guid>
      <description>
        
&lt;script src=&#34;/rmarkdown-libs/htmlwidgets/htmlwidgets.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/jquery/jquery.min.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/proj4js/proj4.js&#34;&gt;&lt;/script&gt;
&lt;link href=&#34;/rmarkdown-libs/highcharts/css/motion.css&#34; rel=&#34;stylesheet&#34; /&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/highcharts.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/highcharts-3d.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/highcharts-more.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/stock.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/heatmap.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/treemap.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/annotations.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/boost.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/data.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/drag-panes.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/drilldown.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/funnel.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/item-series.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/offline-exporting.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/overlapping-datalabels.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/parallel-coordinates.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/sankey.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/solid-gauge.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/streamgraph.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/sunburst.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/vector.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/wordcloud.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/xrange.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/exporting.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/modules/export-data.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/maps/modules/map.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/plugins/grouped-categories.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/plugins/motion.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/plugins/multicolor_series.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/custom/reset.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/custom/symbols-extra.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highcharts/custom/text-symbols.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/highchart-binding/highchart.js&#34;&gt;&lt;/script&gt;


&lt;p&gt;Today, we will continue our exploration of developments in the world of &lt;a href=&#34;https://github.com/tidymodels&#34;&gt;tidy models&lt;/a&gt;, and we will stick with our usual Fama French modeling flow to do so. For new readers who want get familiar with Fama French before diving into this post, see &lt;a href=&#34;https://rviews.rstudio.com/2018/04/11/introduction-to-fama-french/&#34;&gt;here&lt;/a&gt; where we covered importing and wrangling the data, &lt;a href=&#34;https://rviews.rstudio.com/2018/05/10/rolling-fama-french/&#34;&gt;here&lt;/a&gt; where we covered rolling models and visualization, and &lt;a href=&#34;https://rviews.rstudio.com/2018/11/19/many-factor-models/&#34;&gt;here&lt;/a&gt; where we covered managing many models. If you’re into Shiny, &lt;a href=&#34;http://www.reproduciblefinance.com/shiny/fama-french-three-factor/&#34;&gt;this flexdashboard&lt;/a&gt; might be of interest, as well.&lt;/p&gt;
&lt;p&gt;Let’s get to it.&lt;/p&gt;
&lt;p&gt;First, we need our data and, as usual, we’ll import data for daily prices of five ETFs, convert them to returns (have a look &lt;a href=&#34;http://www.reproduciblefinance.com/2017/09/25/asset-prices-to-log-returns/&#34;&gt;here&lt;/a&gt; for a refresher on that code flow), then import the five Fama French factor data and join it to our five ETF returns data. Here’s the code to make that happen (this code was covered in detail in &lt;a href=&#34;http://www.reproduciblefinance.com/2018/06/07/fama-french-write-up-part-one/&#34;&gt;this post&lt;/a&gt;:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;symbols &amp;lt;- c(&amp;quot;SPY&amp;quot;, &amp;quot;EFA&amp;quot;, &amp;quot;IJS&amp;quot;, &amp;quot;EEM&amp;quot;, &amp;quot;AGG&amp;quot;)


# The prices object will hold our daily price data.
prices &amp;lt;- 
  getSymbols(symbols, 
             src = &amp;#39;yahoo&amp;#39;, 
             from = &amp;quot;2012-12-31&amp;quot;,
             to = &amp;quot;2017-12-31&amp;quot;,
             auto.assign = TRUE, 
             warnings = FALSE) %&amp;gt;% 
  map(~Ad(get(.))) %&amp;gt;% 
  reduce(merge) %&amp;gt;%
  `colnames&amp;lt;-`(symbols)


asset_returns_long &amp;lt;-  
  prices %&amp;gt;% 
  tk_tbl(preserve_index = TRUE, rename_index = &amp;quot;date&amp;quot;) %&amp;gt;%
  gather(asset, prices, -date) %&amp;gt;% 
  group_by(asset) %&amp;gt;%  
  mutate(daily_returns = (log(prices) - log(lag(prices)))) %&amp;gt;% 
  na.omit()

factors_data_address &amp;lt;- 
&amp;quot;http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/ftp/Global_5_Factors_Daily_CSV.zip&amp;quot;

factors_csv_name &amp;lt;- &amp;quot;Global_5_Factors_Daily.csv&amp;quot;

temp &amp;lt;- tempfile()

download.file(
  # location of file to be downloaded
  factors_data_address,
  # where we want R to store that file
  temp, 
  quiet = TRUE)


Global_5_Factors &amp;lt;- 
  read_csv(unz(temp, factors_csv_name), skip = 6 ) %&amp;gt;%
  rename(date = X1, MKT = `Mkt-RF`) %&amp;gt;%
  mutate(date = ymd(parse_date_time(date, &amp;quot;%Y%m%d&amp;quot;)))%&amp;gt;%
  mutate_if(is.numeric, funs(. / 100)) %&amp;gt;% 
  select(-RF)

data_joined_tidy &amp;lt;- 
  asset_returns_long %&amp;gt;%
  left_join(Global_5_Factors, by = &amp;quot;date&amp;quot;) %&amp;gt;% 
  na.omit()&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For today, let’s work with just the &lt;code&gt;SPY&lt;/code&gt; data by filtering our data set by asset.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;spy_2013_2017 &amp;lt;- data_joined_tidy %&amp;gt;% 
  filter(asset == &amp;quot;SPY&amp;quot;)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Next, we re-sample this five years’ worth of data into smaller subsets of training and testing sets. This is frequently done by k-fold cross validation (see &lt;a href=&#34;http://www.reproduciblefinance.com/2019/03/13/rsampling-fama-french/&#34;&gt;here&lt;/a&gt; for an example), where random samples are taken from the data, but since we are working with time series, we will use a time-aware technique. The &lt;a href=&#34;https://cran.r-project.org/package=rsample&#34;&gt;&lt;code&gt;rsample&lt;/code&gt;&lt;/a&gt; package has a function for exactly this purpose, the &lt;code&gt;rolling_origin()&lt;/code&gt; function. We covered this process extensively in this &lt;a href=&#34;http://www.reproduciblefinance.com/2019/03/14/rolling-origin-fama-french/&#34;&gt;previous post&lt;/a&gt;. Here’s the code to make it happen.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;rolling_origin_spy_2013_2017 &amp;lt;- 
 rolling_origin(
  data       = spy_2013_2017,
  initial    = 100,
  assess     = 1,
  cumulative = FALSE
)

rolling_origin_spy_2013_2017 %&amp;gt;% 
  dim()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;[1] 1159    2&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;We now have a data object called &lt;code&gt;rolling_origin_spy_2013_2017&lt;/code&gt; that holds 1159 &lt;code&gt;splits&lt;/code&gt; of data. Each split consists of an analysis data set with 100 days of return and factor data, and an assessment data set with one day of return and factor data.&lt;/p&gt;
&lt;p&gt;Now, we can start using that collection of data splits to fit a model on the assessment data, and then test our model on the assessment data. That means it’s time to introduce a relatively new addition to the R tool chain, the &lt;a href=&#34;https://cran.r-project.org/package=parsnip&#34;&gt;&lt;code&gt;parsnip&lt;/code&gt;&lt;/a&gt; package.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;parsnip&lt;/code&gt; is a unified model interface that allows us to create a model specification, set an analytic engine, and then fit a model. It’s a ‘unified’ interface in the sense that we can use the same scaffolding but insert different models, or different engines, or different modes. Let’s see how that works with linear regression.&lt;/p&gt;
&lt;p&gt;Recall that &lt;a href=&#34;http://www.reproduciblefinance.com/2019/03/14/rolling-origin-fama-french/&#34;&gt;in the previous post&lt;/a&gt;, we piped our data into a linear model like so:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;analysis(rolling_origin_spy_2013_2017$splits[[1]]) %&amp;gt;% 
do(model = lm(daily_returns ~ MKT + SMB + HML + RMW + CMA, 
      data = .)) %&amp;gt;% 
tidy(model)&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 6 x 6
# Groups:   asset [1]
  asset term         estimate std.error statistic  p.value
  &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt;           &amp;lt;dbl&amp;gt;     &amp;lt;dbl&amp;gt;     &amp;lt;dbl&amp;gt;    &amp;lt;dbl&amp;gt;
1 SPY   (Intercept)  0.000579  0.000338      1.71 8.98e- 2
2 SPY   MKT          0.909     0.0739       12.3  2.79e-21
3 SPY   SMB         -0.495     0.112        -4.43 2.52e- 5
4 SPY   HML         -0.609     0.208        -2.92 4.38e- 3
5 SPY   RMW         -0.591     0.259        -2.28 2.47e- 2
6 SPY   CMA         -0.395     0.206        -1.92 5.81e- 2&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now, we will pipe into the &lt;code&gt;parsnip&lt;/code&gt; scaffolding, which will allow us to quickly change to a different model and specification further down in the code.&lt;/p&gt;
&lt;p&gt;Since we are running a linear regression, we first create a specification with &lt;code&gt;linear_reg()&lt;/code&gt;, then set the engine with &lt;code&gt;set_engine(&amp;quot;lm&amp;quot;)&lt;/code&gt;, and finally fit the model with &lt;code&gt;fit(five_factor_model, data = one of our splits)&lt;/code&gt;&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lm_model &amp;lt;-
  linear_reg() %&amp;gt;%
  set_engine(&amp;quot;lm&amp;quot;) %&amp;gt;%
  fit(daily_returns ~ MKT + SMB + HML + RMW + CMA, 
      data = analysis(rolling_origin_spy_2013_2017$splits[[1]]))

lm_model &lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;parsnip model object


Call:
stats::lm(formula = formula, data = data)

Coefficients:
(Intercept)          MKT          SMB          HML          RMW  
  0.0005794    0.9086303   -0.4951297   -0.6085088   -0.5910375  
        CMA  
 -0.3954515  &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now that we’ve fit the model on our test set, let’s see how well it predicted the test set. We can use the &lt;code&gt;predict()&lt;/code&gt; function and pass it the results of our &lt;code&gt;parnsip&lt;/code&gt; code flow, along with the &lt;code&gt;assessment&lt;/code&gt; split.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;assessment(rolling_origin_spy_2013_2017$splits[[1]]) %&amp;gt;% 
  select(returns) %&amp;gt;% 
  bind_cols(predict(lm_model, 
        new_data = assessment(rolling_origin_spy_2013_2017$splits[[1]])))&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 1 x 3
# Groups:   asset [1]
  asset returns   .pred
  &amp;lt;chr&amp;gt;   &amp;lt;dbl&amp;gt;   &amp;lt;dbl&amp;gt;
1 SPY      148. 0.00737&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;That worked well, but now let’s head to a more complex model and use the &lt;a href=&#34;https://cran.r-project.org/web/packages/ranger/ranger.pdf&#34;&gt;&lt;code&gt;ranger&lt;/code&gt;&lt;/a&gt; package as an engine for a random forest analysis.&lt;/p&gt;
&lt;p&gt;To set up the ranger random forest model in &lt;code&gt;parsnip&lt;/code&gt;, we first use &lt;code&gt;rand_forest(mode = &amp;quot;regression&amp;quot;, mtry = 3, trees = 100)&lt;/code&gt; to create the specification, &lt;code&gt;set_engine(&amp;quot;ranger&amp;quot;)&lt;/code&gt; to set the engine as the &lt;code&gt;ranger&lt;/code&gt; package, and &lt;code&gt;fit(daily_returns ~ MKT + SMB + HML + RMW + CMA ~ , data = analysis(rolling_origin_spy_2013_2017$splits[[1]])&lt;/code&gt; to fit the five-factor Fama French model to the 100-day sample in our first split.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Need to load the packages to be used as the random forest engine
library(ranger)

rand_forest(mode = &amp;quot;regression&amp;quot;, mtry = 3, trees = 100) %&amp;gt;%
  set_engine(&amp;quot;ranger&amp;quot;) %&amp;gt;%
  fit(daily_returns ~ MKT + SMB + HML + RMW + CMA, 
      data = analysis(rolling_origin_spy_2013_2017$splits[[1]]))&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;parsnip model object

Ranger result

Call:
 ranger::ranger(formula = formula, data = data, mtry = ~3, num.trees = ~100,      num.threads = 1, verbose = FALSE, seed = sample.int(10^5,          1)) 

Type:                             Regression 
Number of trees:                  100 
Sample size:                      100 
Number of independent variables:  5 
Mtry:                             3 
Target node size:                 5 
Variable importance mode:         none 
Splitrule:                        variance 
OOB prediction error (MSE):       1.514654e-05 
R squared (OOB):                  0.6880896 &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Notice that &lt;code&gt;ranger&lt;/code&gt; gives us an &lt;code&gt;OOB prediction error (MSE)&lt;/code&gt; value as part of its return. &lt;code&gt;parsnip&lt;/code&gt; returns to us what the underlying engine returns.&lt;/p&gt;
&lt;p&gt;Now, let’s apply that random forest regression to all 1159 of our splits (recall that each split consists of 100 days of training data and one day of test data), so we can get an average RMSE. Warning: this will consume some resources on your machine and some time in your day.&lt;/p&gt;
&lt;p&gt;To apply that model to our entire data set, we create a function that takes one split, passes it to our &lt;code&gt;parsnip&lt;/code&gt; enabled model, and then uses the &lt;code&gt;predict&lt;/code&gt; function to attempt to predict our &lt;code&gt;assessment&lt;/code&gt; split. The function also allows us to specify the number of trees and the number of variables randomly sampled at each tree split, which is set with the &lt;code&gt;mtry&lt;/code&gt; argument.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ranger_rf_regress &amp;lt;- function(mtry = 3, trees = 5, split){
    
    analysis_set_rf &amp;lt;- analysis(split)
     
    model &amp;lt;- 
      rand_forest(mtry = mtry, trees = trees) %&amp;gt;%
        set_engine(&amp;quot;ranger&amp;quot;) %&amp;gt;%
        fit(daily_returns ~ MKT + SMB + HML + RMW + CMA, data = analysis_set_rf)

    
    assessment_set_rf &amp;lt;- assessment(split)

    assessment_set_rf %&amp;gt;%
      select(date, daily_returns) %&amp;gt;%
      mutate(.pred = unlist(predict(model, new_data = assessment_set_rf))) %&amp;gt;% 
      select(date, daily_returns, .pred)
   
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now we want to pass it our object of 1159 splits, &lt;code&gt;rolling_origin_spy_2013_2017$splits&lt;/code&gt;, and we want the function to iterate over each split. For that we turn to &lt;code&gt;map_df()&lt;/code&gt; from the &lt;code&gt;purrr&lt;/code&gt; package, which allows us to iterate over the data object and return a data frame. &lt;code&gt;map_df()&lt;/code&gt; takes the data as an argument and our function as an argument.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ranger_results &amp;lt;- 
  map_df(.x = rolling_origin_spy_2013_2017$splits,
         ~ranger_rf_regress(mtry = 3, trees = 100, split = .x))&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here are the results. We now have 1159 predictions.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ranger_results %&amp;gt;% 
  head()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 6 x 4
# Groups:   asset [1]
  asset date       daily_returns    .pred
  &amp;lt;chr&amp;gt; &amp;lt;date&amp;gt;             &amp;lt;dbl&amp;gt;    &amp;lt;dbl&amp;gt;
1 SPY   2013-05-28       0.00597  0.00583
2 SPY   2013-05-29      -0.00652 -0.00403
3 SPY   2013-05-30       0.00369  0.00658
4 SPY   2013-05-31      -0.0145  -0.0114 
5 SPY   2013-06-03       0.00549  0.00119
6 SPY   2013-06-04      -0.00482  0.00202&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Notice how the date of each prediction is included since we included it in the &lt;code&gt;select()&lt;/code&gt; call in our function. That will come in handy for charting later.&lt;/p&gt;
&lt;p&gt;Now, we can use the &lt;code&gt;rmse()&lt;/code&gt; function from &lt;code&gt;yardstick&lt;/code&gt; to calculate the root mean-squared error each of our predictions (our test sets had only one observation in them because we were testing on one month, so the RMSE is not a complex calculation here, but it would be the same code pattern if we had a larger test set). We can then find the average RMSE by calling &lt;code&gt;summarise(avg_rmse = mean(.estimate))&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(yardstick)

ranger_results %&amp;gt;%
  group_by(date) %&amp;gt;% 
  rmse(daily_returns, .pred) %&amp;gt;% 
  summarise(avg_rmse = mean(.estimate))&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 1 x 1
  avg_rmse
     &amp;lt;dbl&amp;gt;
1  0.00253&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;We have the average RMSE; let’s see if the RMSE were stable over time, first with &lt;code&gt;ggplot&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ranger_results %&amp;gt;%
  group_by(date) %&amp;gt;% 
  rmse(daily_returns, .pred) %&amp;gt;% 
  ggplot(aes(x = date, y = .estimate)) +
  geom_point(color = &amp;quot;cornflowerblue&amp;quot;) +
  labs(y = &amp;quot;rmse&amp;quot;, x = &amp;quot;&amp;quot;, title = &amp;quot;RMSE over time via Ranger RF&amp;quot;)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&#34;/post/2019-03-13-parsnipping-fama-french_files/figure-html/unnamed-chunk-12-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;
&lt;p&gt;And with &lt;code&gt;highcharter&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ranger_results %&amp;gt;%
  group_by(date) %&amp;gt;% 
  rmse(daily_returns, .pred) %&amp;gt;% 
  hchart(., hcaes(x = date, y = .estimate),
         type = &amp;quot;point&amp;quot;) %&amp;gt;% 
  hc_title(text = &amp;quot;RMSE over time via Ranger RF&amp;quot;) %&amp;gt;% 
  hc_yAxis(title = list(text = &amp;quot;RMSE&amp;quot;))&lt;/code&gt;&lt;/pre&gt;
&lt;div id=&#34;htmlwidget-1&#34; style=&#34;width:100%;height:500px;&#34; class=&#34;highchart html-widget&#34;&gt;&lt;/div&gt;
&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-1&#34;&gt;{&#34;x&#34;:{&#34;hc_opts&#34;:{&#34;title&#34;:{&#34;text&#34;:&#34;RMSE over time via Ranger RF&#34;},&#34;yAxis&#34;:{&#34;title&#34;:{&#34;text&#34;:&#34;RMSE&#34;},&#34;type&#34;:&#34;linear&#34;},&#34;credits&#34;:{&#34;enabled&#34;:false},&#34;exporting&#34;:{&#34;enabled&#34;:false},&#34;plotOptions&#34;:{&#34;series&#34;:{&#34;label&#34;:{&#34;enabled&#34;:false},&#34;turboThreshold&#34;:0,&#34;showInLegend&#34;:false},&#34;treemap&#34;:{&#34;layoutAlgorithm&#34;:&#34;squarified&#34;},&#34;scatter&#34;:{&#34;marker&#34;:{&#34;symbol&#34;:&#34;circle&#34;}}},&#34;series&#34;:[{&#34;group&#34;:&#34;group&#34;,&#34;data&#34;:[{&#34;date&#34;:&#34;2013-05-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000142752717804637,&#34;x&#34;:1369699200000,&#34;y&#34;:0.000142752717804637},{&#34;date&#34;:&#34;2013-05-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00248144590239636,&#34;x&#34;:1369785600000,&#34;y&#34;:0.00248144590239636},{&#34;date&#34;:&#34;2013-05-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00289139762321627,&#34;x&#34;:1369872000000,&#34;y&#34;:0.00289139762321627},{&#34;date&#34;:&#34;2013-05-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00309703642561825,&#34;x&#34;:1369958400000,&#34;y&#34;:0.00309703642561825},{&#34;date&#34;:&#34;2013-06-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00430144561084509,&#34;x&#34;:1370217600000,&#34;y&#34;:0.00430144561084509},{&#34;date&#34;:&#34;2013-06-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00684300611337766,&#34;x&#34;:1370304000000,&#34;y&#34;:0.00684300611337766},{&#34;date&#34;:&#34;2013-06-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00291214523819374,&#34;x&#34;:1370390400000,&#34;y&#34;:0.00291214523819374},{&#34;date&#34;:&#34;2013-06-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00279000747041504,&#34;x&#34;:1370476800000,&#34;y&#34;:0.00279000747041504},{&#34;date&#34;:&#34;2013-06-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0041295175155098,&#34;x&#34;:1370563200000,&#34;y&#34;:0.0041295175155098},{&#34;date&#34;:&#34;2013-06-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00123362056195843,&#34;x&#34;:1370822400000,&#34;y&#34;:0.00123362056195843},{&#34;date&#34;:&#34;2013-06-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000260231607059154,&#34;x&#34;:1370908800000,&#34;y&#34;:0.000260231607059154},{&#34;date&#34;:&#34;2013-06-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00439769098328566,&#34;x&#34;:1370995200000,&#34;y&#34;:0.00439769098328566},{&#34;date&#34;:&#34;2013-06-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00862505756614801,&#34;x&#34;:1371081600000,&#34;y&#34;:0.00862505756614801},{&#34;date&#34;:&#34;2013-06-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00627871135416806,&#34;x&#34;:1371168000000,&#34;y&#34;:0.00627871135416806},{&#34;date&#34;:&#34;2013-06-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00139361772830066,&#34;x&#34;:1371427200000,&#34;y&#34;:0.00139361772830066},{&#34;date&#34;:&#34;2013-06-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00129999403832123,&#34;x&#34;:1371513600000,&#34;y&#34;:0.00129999403832123},{&#34;date&#34;:&#34;2013-06-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00549970257328453,&#34;x&#34;:1371600000000,&#34;y&#34;:0.00549970257328453},{&#34;date&#34;:&#34;2013-06-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.010067877171231,&#34;x&#34;:1371686400000,&#34;y&#34;:0.010067877171231},{&#34;date&#34;:&#34;2013-06-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00757847732215951,&#34;x&#34;:1371772800000,&#34;y&#34;:0.00757847732215951},{&#34;date&#34;:&#34;2013-06-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00344560021960934,&#34;x&#34;:1372032000000,&#34;y&#34;:0.00344560021960934},{&#34;date&#34;:&#34;2013-06-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00111555171287498,&#34;x&#34;:1372118400000,&#34;y&#34;:0.00111555171287498},{&#34;date&#34;:&#34;2013-06-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00210720426205369,&#34;x&#34;:1372204800000,&#34;y&#34;:0.00210720426205369},{&#34;date&#34;:&#34;2013-06-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00190601194984189,&#34;x&#34;:1372291200000,&#34;y&#34;:0.00190601194984189},{&#34;date&#34;:&#34;2013-06-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00323689404809277,&#34;x&#34;:1372377600000,&#34;y&#34;:0.00323689404809277},{&#34;date&#34;:&#34;2013-07-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0015246248388892,&#34;x&#34;:1372636800000,&#34;y&#34;:0.0015246248388892},{&#34;date&#34;:&#34;2013-07-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00027955683504102,&#34;x&#34;:1372723200000,&#34;y&#34;:0.00027955683504102},{&#34;date&#34;:&#34;2013-07-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00238816133375573,&#34;x&#34;:1372809600000,&#34;y&#34;:0.00238816133375573},{&#34;date&#34;:&#34;2013-07-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00990653992577938,&#34;x&#34;:1372982400000,&#34;y&#34;:0.00990653992577938},{&#34;date&#34;:&#34;2013-07-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0027759555185396,&#34;x&#34;:1373241600000,&#34;y&#34;:0.0027759555185396},{&#34;date&#34;:&#34;2013-07-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00227547985103656,&#34;x&#34;:1373328000000,&#34;y&#34;:0.00227547985103656},{&#34;date&#34;:&#34;2013-07-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00340354669550348,&#34;x&#34;:1373414400000,&#34;y&#34;:0.00340354669550348},{&#34;date&#34;:&#34;2013-07-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00785244615911465,&#34;x&#34;:1373500800000,&#34;y&#34;:0.00785244615911465},{&#34;date&#34;:&#34;2013-07-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00172836514222019,&#34;x&#34;:1373587200000,&#34;y&#34;:0.00172836514222019},{&#34;date&#34;:&#34;2013-07-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000141612792237647,&#34;x&#34;:1373846400000,&#34;y&#34;:0.000141612792237647},{&#34;date&#34;:&#34;2013-07-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00327137485857389,&#34;x&#34;:1373932800000,&#34;y&#34;:0.00327137485857389},{&#34;date&#34;:&#34;2013-07-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00176641332984882,&#34;x&#34;:1374019200000,&#34;y&#34;:0.00176641332984882},{&#34;date&#34;:&#34;2013-07-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00154772618154754,&#34;x&#34;:1374105600000,&#34;y&#34;:0.00154772618154754},{&#34;date&#34;:&#34;2013-07-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00269690078023818,&#34;x&#34;:1374192000000,&#34;y&#34;:0.00269690078023818},{&#34;date&#34;:&#34;2013-07-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136133061201296,&#34;x&#34;:1374451200000,&#34;y&#34;:0.00136133061201296},{&#34;date&#34;:&#34;2013-07-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00308872127573454,&#34;x&#34;:1374537600000,&#34;y&#34;:0.00308872127573454},{&#34;date&#34;:&#34;2013-07-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00195016821410643,&#34;x&#34;:1374624000000,&#34;y&#34;:0.00195016821410643},{&#34;date&#34;:&#34;2013-07-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000918117461552164,&#34;x&#34;:1374710400000,&#34;y&#34;:0.000918117461552164},{&#34;date&#34;:&#34;2013-07-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00392416647401538,&#34;x&#34;:1374796800000,&#34;y&#34;:0.00392416647401538},{&#34;date&#34;:&#34;2013-07-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00186499539974162,&#34;x&#34;:1375056000000,&#34;y&#34;:0.00186499539974162},{&#34;date&#34;:&#34;2013-07-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000704951304307538,&#34;x&#34;:1375142400000,&#34;y&#34;:0.000704951304307538},{&#34;date&#34;:&#34;2013-07-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000291087547639628,&#34;x&#34;:1375228800000,&#34;y&#34;:0.000291087547639628},{&#34;date&#34;:&#34;2013-08-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156555762355721,&#34;x&#34;:1375315200000,&#34;y&#34;:0.00156555762355721},{&#34;date&#34;:&#34;2013-08-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00342466009642512,&#34;x&#34;:1375401600000,&#34;y&#34;:0.00342466009642512},{&#34;date&#34;:&#34;2013-08-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00141234538646521,&#34;x&#34;:1375660800000,&#34;y&#34;:0.00141234538646521},{&#34;date&#34;:&#34;2013-08-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00453039357456201,&#34;x&#34;:1375747200000,&#34;y&#34;:0.00453039357456201},{&#34;date&#34;:&#34;2013-08-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000453949337123345,&#34;x&#34;:1375833600000,&#34;y&#34;:0.000453949337123345},{&#34;date&#34;:&#34;2013-08-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00319715187637578,&#34;x&#34;:1375920000000,&#34;y&#34;:0.00319715187637578},{&#34;date&#34;:&#34;2013-08-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00421636388783291,&#34;x&#34;:1376006400000,&#34;y&#34;:0.00421636388783291},{&#34;date&#34;:&#34;2013-08-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000582989994890629,&#34;x&#34;:1376265600000,&#34;y&#34;:0.000582989994890629},{&#34;date&#34;:&#34;2013-08-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00248043179424258,&#34;x&#34;:1376352000000,&#34;y&#34;:0.00248043179424258},{&#34;date&#34;:&#34;2013-08-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00309464529048978,&#34;x&#34;:1376438400000,&#34;y&#34;:0.00309464529048978},{&#34;date&#34;:&#34;2013-08-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00409494503279893,&#34;x&#34;:1376524800000,&#34;y&#34;:0.00409494503279893},{&#34;date&#34;:&#34;2013-08-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00258176487593892,&#34;x&#34;:1376611200000,&#34;y&#34;:0.00258176487593892},{&#34;date&#34;:&#34;2013-08-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00117265718611906,&#34;x&#34;:1376870400000,&#34;y&#34;:0.00117265718611906},{&#34;date&#34;:&#34;2013-08-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00602758728915038,&#34;x&#34;:1376956800000,&#34;y&#34;:0.00602758728915038},{&#34;date&#34;:&#34;2013-08-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000830939445518749,&#34;x&#34;:1377043200000,&#34;y&#34;:0.000830939445518749},{&#34;date&#34;:&#34;2013-08-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00168966716232213,&#34;x&#34;:1377129600000,&#34;y&#34;:0.00168966716232213},{&#34;date&#34;:&#34;2013-08-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281591810324628,&#34;x&#34;:1377216000000,&#34;y&#34;:0.00281591810324628},{&#34;date&#34;:&#34;2013-08-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00187026973058945,&#34;x&#34;:1377475200000,&#34;y&#34;:0.00187026973058945},{&#34;date&#34;:&#34;2013-08-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00291060928304423,&#34;x&#34;:1377561600000,&#34;y&#34;:0.00291060928304423},{&#34;date&#34;:&#34;2013-08-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00626027940262622,&#34;x&#34;:1377648000000,&#34;y&#34;:0.00626027940262622},{&#34;date&#34;:&#34;2013-08-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00117709798349316,&#34;x&#34;:1377734400000,&#34;y&#34;:0.00117709798349316},{&#34;date&#34;:&#34;2013-08-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00270900069061262,&#34;x&#34;:1377820800000,&#34;y&#34;:0.00270900069061262},{&#34;date&#34;:&#34;2013-09-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000892207820183886,&#34;x&#34;:1378166400000,&#34;y&#34;:0.000892207820183886},{&#34;date&#34;:&#34;2013-09-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00439848539962431,&#34;x&#34;:1378252800000,&#34;y&#34;:0.00439848539962431},{&#34;date&#34;:&#34;2013-09-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000749332096425049,&#34;x&#34;:1378339200000,&#34;y&#34;:0.000749332096425049},{&#34;date&#34;:&#34;2013-09-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00404723911777309,&#34;x&#34;:1378425600000,&#34;y&#34;:0.00404723911777309},{&#34;date&#34;:&#34;2013-09-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00470142591028648,&#34;x&#34;:1378684800000,&#34;y&#34;:0.00470142591028648},{&#34;date&#34;:&#34;2013-09-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000234752371109743,&#34;x&#34;:1378771200000,&#34;y&#34;:0.000234752371109743},{&#34;date&#34;:&#34;2013-09-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00285950641404687,&#34;x&#34;:1378857600000,&#34;y&#34;:0.00285950641404687},{&#34;date&#34;:&#34;2013-09-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000247670846161255,&#34;x&#34;:1378944000000,&#34;y&#34;:0.000247670846161255},{&#34;date&#34;:&#34;2013-09-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0015043158443795,&#34;x&#34;:1379030400000,&#34;y&#34;:0.0015043158443795},{&#34;date&#34;:&#34;2013-09-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00115698479726509,&#34;x&#34;:1379289600000,&#34;y&#34;:0.00115698479726509},{&#34;date&#34;:&#34;2013-09-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281728468879361,&#34;x&#34;:1379376000000,&#34;y&#34;:0.00281728468879361},{&#34;date&#34;:&#34;2013-09-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00340383993451582,&#34;x&#34;:1379462400000,&#34;y&#34;:0.00340383993451582},{&#34;date&#34;:&#34;2013-09-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00572689019624601,&#34;x&#34;:1379548800000,&#34;y&#34;:0.00572689019624601},{&#34;date&#34;:&#34;2013-09-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00253135671003318,&#34;x&#34;:1379635200000,&#34;y&#34;:0.00253135671003318},{&#34;date&#34;:&#34;2013-09-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000983885632568376,&#34;x&#34;:1379894400000,&#34;y&#34;:0.000983885632568376},{&#34;date&#34;:&#34;2013-09-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000394017946609534,&#34;x&#34;:1379980800000,&#34;y&#34;:0.000394017946609534},{&#34;date&#34;:&#34;2013-09-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00276821422041246,&#34;x&#34;:1380067200000,&#34;y&#34;:0.00276821422041246},{&#34;date&#34;:&#34;2013-09-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00245223915591046,&#34;x&#34;:1380153600000,&#34;y&#34;:0.00245223915591046},{&#34;date&#34;:&#34;2013-09-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00167896835475828,&#34;x&#34;:1380240000000,&#34;y&#34;:0.00167896835475828},{&#34;date&#34;:&#34;2013-09-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00302581645549956,&#34;x&#34;:1380499200000,&#34;y&#34;:0.00302581645549956},{&#34;date&#34;:&#34;2013-10-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00133532966948982,&#34;x&#34;:1380585600000,&#34;y&#34;:0.00133532966948982},{&#34;date&#34;:&#34;2013-10-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000404804026220111,&#34;x&#34;:1380672000000,&#34;y&#34;:0.000404804026220111},{&#34;date&#34;:&#34;2013-10-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00614434885800635,&#34;x&#34;:1380758400000,&#34;y&#34;:0.00614434885800635},{&#34;date&#34;:&#34;2013-10-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00561509975346613,&#34;x&#34;:1380844800000,&#34;y&#34;:0.00561509975346613},{&#34;date&#34;:&#34;2013-10-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00423365708880972,&#34;x&#34;:1381104000000,&#34;y&#34;:0.00423365708880972},{&#34;date&#34;:&#34;2013-10-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000778471899940642,&#34;x&#34;:1381190400000,&#34;y&#34;:0.000778471899940642},{&#34;date&#34;:&#34;2013-10-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00320215175070333,&#34;x&#34;:1381276800000,&#34;y&#34;:0.00320215175070333},{&#34;date&#34;:&#34;2013-10-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0106384753612411,&#34;x&#34;:1381363200000,&#34;y&#34;:0.0106384753612411},{&#34;date&#34;:&#34;2013-10-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00171777076192885,&#34;x&#34;:1381449600000,&#34;y&#34;:0.00171777076192885},{&#34;date&#34;:&#34;2013-10-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0014617944493349,&#34;x&#34;:1381708800000,&#34;y&#34;:0.0014617944493349},{&#34;date&#34;:&#34;2013-10-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00437650246614441,&#34;x&#34;:1381795200000,&#34;y&#34;:0.00437650246614441},{&#34;date&#34;:&#34;2013-10-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00283682416435875,&#34;x&#34;:1381881600000,&#34;y&#34;:0.00283682416435875},{&#34;date&#34;:&#34;2013-10-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000458134362367081,&#34;x&#34;:1381968000000,&#34;y&#34;:0.000458134362367081},{&#34;date&#34;:&#34;2013-10-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000488303630816335,&#34;x&#34;:1382054400000,&#34;y&#34;:0.000488303630816335},{&#34;date&#34;:&#34;2013-10-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000887043567693242,&#34;x&#34;:1382313600000,&#34;y&#34;:0.000887043567693242},{&#34;date&#34;:&#34;2013-10-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00115608253109249,&#34;x&#34;:1382400000000,&#34;y&#34;:0.00115608253109249},{&#34;date&#34;:&#34;2013-10-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00235818360568705,&#34;x&#34;:1382486400000,&#34;y&#34;:0.00235818360568705},{&#34;date&#34;:&#34;2013-10-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106066455567277,&#34;x&#34;:1382572800000,&#34;y&#34;:0.00106066455567277},{&#34;date&#34;:&#34;2013-10-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00660056619588438,&#34;x&#34;:1382659200000,&#34;y&#34;:0.00660056619588438},{&#34;date&#34;:&#34;2013-10-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00253966857103552,&#34;x&#34;:1382918400000,&#34;y&#34;:0.00253966857103552},{&#34;date&#34;:&#34;2013-10-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000708643111683541,&#34;x&#34;:1383004800000,&#34;y&#34;:0.000708643111683541},{&#34;date&#34;:&#34;2013-10-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00459062122339914,&#34;x&#34;:1383091200000,&#34;y&#34;:0.00459062122339914},{&#34;date&#34;:&#34;2013-10-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00242759731143618,&#34;x&#34;:1383177600000,&#34;y&#34;:0.00242759731143618},{&#34;date&#34;:&#34;2013-11-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00119101679630836,&#34;x&#34;:1383264000000,&#34;y&#34;:0.00119101679630836},{&#34;date&#34;:&#34;2013-11-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00158715544003218,&#34;x&#34;:1383523200000,&#34;y&#34;:0.00158715544003218},{&#34;date&#34;:&#34;2013-11-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000707140242553759,&#34;x&#34;:1383609600000,&#34;y&#34;:0.000707140242553759},{&#34;date&#34;:&#34;2013-11-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000869667678226866,&#34;x&#34;:1383696000000,&#34;y&#34;:0.000869667678226866},{&#34;date&#34;:&#34;2013-11-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:3.41997301053047e-05,&#34;x&#34;:1383782400000,&#34;y&#34;:3.41997301053047e-05},{&#34;date&#34;:&#34;2013-11-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00774212491252219,&#34;x&#34;:1383868800000,&#34;y&#34;:0.00774212491252219},{&#34;date&#34;:&#34;2013-11-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00383346982479243,&#34;x&#34;:1384128000000,&#34;y&#34;:0.00383346982479243},{&#34;date&#34;:&#34;2013-11-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000542045432367102,&#34;x&#34;:1384214400000,&#34;y&#34;:0.000542045432367102},{&#34;date&#34;:&#34;2013-11-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00477472845551608,&#34;x&#34;:1384300800000,&#34;y&#34;:0.00477472845551608},{&#34;date&#34;:&#34;2013-11-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:7.97778727704276e-05,&#34;x&#34;:1384387200000,&#34;y&#34;:7.97778727704276e-05},{&#34;date&#34;:&#34;2013-11-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000100208301392964,&#34;x&#34;:1384473600000,&#34;y&#34;:0.000100208301392964},{&#34;date&#34;:&#34;2013-11-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00305915006399908,&#34;x&#34;:1384732800000,&#34;y&#34;:0.00305915006399908},{&#34;date&#34;:&#34;2013-11-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178020971267786,&#34;x&#34;:1384819200000,&#34;y&#34;:0.00178020971267786},{&#34;date&#34;:&#34;2013-11-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00019925260780281,&#34;x&#34;:1384905600000,&#34;y&#34;:0.00019925260780281},{&#34;date&#34;:&#34;2013-11-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406160223566766,&#34;x&#34;:1384992000000,&#34;y&#34;:0.00406160223566766},{&#34;date&#34;:&#34;2013-11-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000723442153834573,&#34;x&#34;:1385078400000,&#34;y&#34;:0.000723442153834573},{&#34;date&#34;:&#34;2013-11-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000328744423454753,&#34;x&#34;:1385337600000,&#34;y&#34;:0.000328744423454753},{&#34;date&#34;:&#34;2013-11-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00265982636503166,&#34;x&#34;:1385424000000,&#34;y&#34;:0.00265982636503166},{&#34;date&#34;:&#34;2013-11-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00128358907179459,&#34;x&#34;:1385510400000,&#34;y&#34;:0.00128358907179459},{&#34;date&#34;:&#34;2013-11-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00199764651921265,&#34;x&#34;:1385683200000,&#34;y&#34;:0.00199764651921265},{&#34;date&#34;:&#34;2013-12-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00206032785364643,&#34;x&#34;:1385942400000,&#34;y&#34;:0.00206032785364643},{&#34;date&#34;:&#34;2013-12-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000479576111824037,&#34;x&#34;:1386028800000,&#34;y&#34;:0.000479576111824037},{&#34;date&#34;:&#34;2013-12-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00218374080985527,&#34;x&#34;:1386115200000,&#34;y&#34;:0.00218374080985527},{&#34;date&#34;:&#34;2013-12-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000704660423616735,&#34;x&#34;:1386201600000,&#34;y&#34;:0.000704660423616735},{&#34;date&#34;:&#34;2013-12-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000797892320329585,&#34;x&#34;:1386288000000,&#34;y&#34;:0.000797892320329585},{&#34;date&#34;:&#34;2013-12-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000848881324378698,&#34;x&#34;:1386547200000,&#34;y&#34;:0.000848881324378698},{&#34;date&#34;:&#34;2013-12-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000121244794397763,&#34;x&#34;:1386633600000,&#34;y&#34;:0.000121244794397763},{&#34;date&#34;:&#34;2013-12-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00157056881431764,&#34;x&#34;:1386720000000,&#34;y&#34;:0.00157056881431764},{&#34;date&#34;:&#34;2013-12-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000762878609040502,&#34;x&#34;:1386806400000,&#34;y&#34;:0.000762878609040502},{&#34;date&#34;:&#34;2013-12-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000262529678308959,&#34;x&#34;:1386892800000,&#34;y&#34;:0.000262529678308959},{&#34;date&#34;:&#34;2013-12-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000656239523109479,&#34;x&#34;:1387152000000,&#34;y&#34;:0.000656239523109479},{&#34;date&#34;:&#34;2013-12-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000472490575181525,&#34;x&#34;:1387238400000,&#34;y&#34;:0.000472490575181525},{&#34;date&#34;:&#34;2013-12-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00585553726209109,&#34;x&#34;:1387324800000,&#34;y&#34;:0.00585553726209109},{&#34;date&#34;:&#34;2013-12-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00640125999372666,&#34;x&#34;:1387411200000,&#34;y&#34;:0.00640125999372666},{&#34;date&#34;:&#34;2013-12-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000492841717857647,&#34;x&#34;:1387497600000,&#34;y&#34;:0.000492841717857647},{&#34;date&#34;:&#34;2013-12-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00010882949525809,&#34;x&#34;:1387756800000,&#34;y&#34;:0.00010882949525809},{&#34;date&#34;:&#34;2013-12-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000850285446368634,&#34;x&#34;:1387843200000,&#34;y&#34;:0.000850285446368634},{&#34;date&#34;:&#34;2013-12-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00229071411562669,&#34;x&#34;:1388016000000,&#34;y&#34;:0.00229071411562669},{&#34;date&#34;:&#34;2013-12-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00361979126537698,&#34;x&#34;:1388102400000,&#34;y&#34;:0.00361979126537698},{&#34;date&#34;:&#34;2013-12-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00330600930550152,&#34;x&#34;:1388361600000,&#34;y&#34;:0.00330600930550152},{&#34;date&#34;:&#34;2013-12-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00151186957064735,&#34;x&#34;:1388448000000,&#34;y&#34;:0.00151186957064735},{&#34;date&#34;:&#34;2014-01-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00148733526212147,&#34;x&#34;:1388620800000,&#34;y&#34;:0.00148733526212147},{&#34;date&#34;:&#34;2014-01-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000818930753694061,&#34;x&#34;:1388707200000,&#34;y&#34;:0.000818930753694061},{&#34;date&#34;:&#34;2014-01-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00125900224553879,&#34;x&#34;:1388966400000,&#34;y&#34;:0.00125900224553879},{&#34;date&#34;:&#34;2014-01-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00253206351383783,&#34;x&#34;:1389052800000,&#34;y&#34;:0.00253206351383783},{&#34;date&#34;:&#34;2014-01-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00446864942376773,&#34;x&#34;:1389139200000,&#34;y&#34;:0.00446864942376773},{&#34;date&#34;:&#34;2014-01-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000571434050674663,&#34;x&#34;:1389225600000,&#34;y&#34;:0.000571434050674663},{&#34;date&#34;:&#34;2014-01-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0011876363523322,&#34;x&#34;:1389312000000,&#34;y&#34;:0.0011876363523322},{&#34;date&#34;:&#34;2014-01-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00920096136928017,&#34;x&#34;:1389571200000,&#34;y&#34;:0.00920096136928017},{&#34;date&#34;:&#34;2014-01-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00415825572747359,&#34;x&#34;:1389657600000,&#34;y&#34;:0.00415825572747359},{&#34;date&#34;:&#34;2014-01-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00151620167562148,&#34;x&#34;:1389744000000,&#34;y&#34;:0.00151620167562148},{&#34;date&#34;:&#34;2014-01-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000422788504755945,&#34;x&#34;:1389830400000,&#34;y&#34;:0.000422788504755945},{&#34;date&#34;:&#34;2014-01-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00169462330330027,&#34;x&#34;:1389916800000,&#34;y&#34;:0.00169462330330027},{&#34;date&#34;:&#34;2014-01-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000125594486346043,&#34;x&#34;:1390262400000,&#34;y&#34;:0.000125594486346043},{&#34;date&#34;:&#34;2014-01-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00333538903158534,&#34;x&#34;:1390348800000,&#34;y&#34;:0.00333538903158534},{&#34;date&#34;:&#34;2014-01-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00280448815225807,&#34;x&#34;:1390435200000,&#34;y&#34;:0.00280448815225807},{&#34;date&#34;:&#34;2014-01-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0114439499820774,&#34;x&#34;:1390521600000,&#34;y&#34;:0.0114439499820774},{&#34;date&#34;:&#34;2014-01-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000493179949841391,&#34;x&#34;:1390780800000,&#34;y&#34;:0.000493179949841391},{&#34;date&#34;:&#34;2014-01-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00126244587670463,&#34;x&#34;:1390867200000,&#34;y&#34;:0.00126244587670463},{&#34;date&#34;:&#34;2014-01-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00510795794284275,&#34;x&#34;:1390953600000,&#34;y&#34;:0.00510795794284275},{&#34;date&#34;:&#34;2014-01-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00201308629063307,&#34;x&#34;:1391040000000,&#34;y&#34;:0.00201308629063307},{&#34;date&#34;:&#34;2014-01-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000231244217711399,&#34;x&#34;:1391126400000,&#34;y&#34;:0.000231244217711399},{&#34;date&#34;:&#34;2014-02-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0115634039089308,&#34;x&#34;:1391385600000,&#34;y&#34;:0.0115634039089308},{&#34;date&#34;:&#34;2014-02-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406486240510587,&#34;x&#34;:1391472000000,&#34;y&#34;:0.00406486240510587},{&#34;date&#34;:&#34;2014-02-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0047391731187252,&#34;x&#34;:1391558400000,&#34;y&#34;:0.0047391731187252},{&#34;date&#34;:&#34;2014-02-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00546190892666902,&#34;x&#34;:1391644800000,&#34;y&#34;:0.00546190892666902},{&#34;date&#34;:&#34;2014-02-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00260291637432031,&#34;x&#34;:1391731200000,&#34;y&#34;:0.00260291637432031},{&#34;date&#34;:&#34;2014-02-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00129593547982691,&#34;x&#34;:1391990400000,&#34;y&#34;:0.00129593547982691},{&#34;date&#34;:&#34;2014-02-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000580525462518246,&#34;x&#34;:1392076800000,&#34;y&#34;:0.000580525462518246},{&#34;date&#34;:&#34;2014-02-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00246574780588963,&#34;x&#34;:1392163200000,&#34;y&#34;:0.00246574780588963},{&#34;date&#34;:&#34;2014-02-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00105519704792631,&#34;x&#34;:1392249600000,&#34;y&#34;:0.00105519704792631},{&#34;date&#34;:&#34;2014-02-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00236393646847481,&#34;x&#34;:1392336000000,&#34;y&#34;:0.00236393646847481},{&#34;date&#34;:&#34;2014-02-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00361555311954361,&#34;x&#34;:1392681600000,&#34;y&#34;:0.00361555311954361},{&#34;date&#34;:&#34;2014-02-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00202325532716078,&#34;x&#34;:1392768000000,&#34;y&#34;:0.00202325532716078},{&#34;date&#34;:&#34;2014-02-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00381074086602401,&#34;x&#34;:1392854400000,&#34;y&#34;:0.00381074086602401},{&#34;date&#34;:&#34;2014-02-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00231301823550689,&#34;x&#34;:1392940800000,&#34;y&#34;:0.00231301823550689},{&#34;date&#34;:&#34;2014-02-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:3.89640725640683e-05,&#34;x&#34;:1393200000000,&#34;y&#34;:3.89640725640683e-05},{&#34;date&#34;:&#34;2014-02-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000476087731678889,&#34;x&#34;:1393286400000,&#34;y&#34;:0.000476087731678889},{&#34;date&#34;:&#34;2014-02-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00243442029091147,&#34;x&#34;:1393372800000,&#34;y&#34;:0.00243442029091147},{&#34;date&#34;:&#34;2014-02-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178820676495497,&#34;x&#34;:1393459200000,&#34;y&#34;:0.00178820676495497},{&#34;date&#34;:&#34;2014-02-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:1.08820158253868e-05,&#34;x&#34;:1393545600000,&#34;y&#34;:1.08820158253868e-05},{&#34;date&#34;:&#34;2014-03-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013276177154797,&#34;x&#34;:1393804800000,&#34;y&#34;:0.0013276177154797},{&#34;date&#34;:&#34;2014-03-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00643113277773242,&#34;x&#34;:1393891200000,&#34;y&#34;:0.00643113277773242},{&#34;date&#34;:&#34;2014-03-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00016254202236877,&#34;x&#34;:1393977600000,&#34;y&#34;:0.00016254202236877},{&#34;date&#34;:&#34;2014-03-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00230278019254107,&#34;x&#34;:1394064000000,&#34;y&#34;:0.00230278019254107},{&#34;date&#34;:&#34;2014-03-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00350509104329834,&#34;x&#34;:1394150400000,&#34;y&#34;:0.00350509104329834},{&#34;date&#34;:&#34;2014-03-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00237167859360072,&#34;x&#34;:1394409600000,&#34;y&#34;:0.00237167859360072},{&#34;date&#34;:&#34;2014-03-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000504901343541518,&#34;x&#34;:1394496000000,&#34;y&#34;:0.000504901343541518},{&#34;date&#34;:&#34;2014-03-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00233872525911163,&#34;x&#34;:1394582400000,&#34;y&#34;:0.00233872525911163},{&#34;date&#34;:&#34;2014-03-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00128850236022677,&#34;x&#34;:1394668800000,&#34;y&#34;:0.00128850236022677},{&#34;date&#34;:&#34;2014-03-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00138860484329246,&#34;x&#34;:1394755200000,&#34;y&#34;:0.00138860484329246},{&#34;date&#34;:&#34;2014-03-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000348630426874252,&#34;x&#34;:1395014400000,&#34;y&#34;:0.000348630426874252},{&#34;date&#34;:&#34;2014-03-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00171305593536281,&#34;x&#34;:1395100800000,&#34;y&#34;:0.00171305593536281},{&#34;date&#34;:&#34;2014-03-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103422560544747,&#34;x&#34;:1395187200000,&#34;y&#34;:0.00103422560544747},{&#34;date&#34;:&#34;2014-03-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00244948500910164,&#34;x&#34;:1395273600000,&#34;y&#34;:0.00244948500910164},{&#34;date&#34;:&#34;2014-03-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00339788499753144,&#34;x&#34;:1395360000000,&#34;y&#34;:0.00339788499753144},{&#34;date&#34;:&#34;2014-03-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130675471112893,&#34;x&#34;:1395619200000,&#34;y&#34;:0.00130675471112893},{&#34;date&#34;:&#34;2014-03-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00213675190692013,&#34;x&#34;:1395705600000,&#34;y&#34;:0.00213675190692013},{&#34;date&#34;:&#34;2014-03-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00466893619476399,&#34;x&#34;:1395792000000,&#34;y&#34;:0.00466893619476399},{&#34;date&#34;:&#34;2014-03-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00165591295288144,&#34;x&#34;:1395878400000,&#34;y&#34;:0.00165591295288144},{&#34;date&#34;:&#34;2014-03-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0022503861609131,&#34;x&#34;:1395964800000,&#34;y&#34;:0.0022503861609131},{&#34;date&#34;:&#34;2014-03-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00144421796473591,&#34;x&#34;:1396224000000,&#34;y&#34;:0.00144421796473591},{&#34;date&#34;:&#34;2014-04-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000293571879672249,&#34;x&#34;:1396310400000,&#34;y&#34;:0.000293571879672249},{&#34;date&#34;:&#34;2014-04-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000921277632247967,&#34;x&#34;:1396396800000,&#34;y&#34;:0.000921277632247967},{&#34;date&#34;:&#34;2014-04-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0010656539825164,&#34;x&#34;:1396483200000,&#34;y&#34;:0.0010656539825164},{&#34;date&#34;:&#34;2014-04-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00618316301989382,&#34;x&#34;:1396569600000,&#34;y&#34;:0.00618316301989382},{&#34;date&#34;:&#34;2014-04-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00410145020592395,&#34;x&#34;:1396828800000,&#34;y&#34;:0.00410145020592395},{&#34;date&#34;:&#34;2014-04-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000744359375515803,&#34;x&#34;:1396915200000,&#34;y&#34;:0.000744359375515803},{&#34;date&#34;:&#34;2014-04-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00371180214554768,&#34;x&#34;:1397001600000,&#34;y&#34;:0.00371180214554768},{&#34;date&#34;:&#34;2014-04-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00955218910528874,&#34;x&#34;:1397088000000,&#34;y&#34;:0.00955218910528874},{&#34;date&#34;:&#34;2014-04-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000757652870459674,&#34;x&#34;:1397174400000,&#34;y&#34;:0.000757652870459674},{&#34;date&#34;:&#34;2014-04-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00231523494562687,&#34;x&#34;:1397433600000,&#34;y&#34;:0.00231523494562687},{&#34;date&#34;:&#34;2014-04-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00502091291754025,&#34;x&#34;:1397520000000,&#34;y&#34;:0.00502091291754025},{&#34;date&#34;:&#34;2014-04-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00027389125520713,&#34;x&#34;:1397606400000,&#34;y&#34;:0.00027389125520713},{&#34;date&#34;:&#34;2014-04-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00043409550268547,&#34;x&#34;:1397692800000,&#34;y&#34;:0.00043409550268547},{&#34;date&#34;:&#34;2014-04-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000808809667989553,&#34;x&#34;:1398038400000,&#34;y&#34;:0.000808809667989553},{&#34;date&#34;:&#34;2014-04-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013365075844831,&#34;x&#34;:1398124800000,&#34;y&#34;:0.0013365075844831},{&#34;date&#34;:&#34;2014-04-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000424163460882393,&#34;x&#34;:1398211200000,&#34;y&#34;:0.000424163460882393},{&#34;date&#34;:&#34;2014-04-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00150007335746622,&#34;x&#34;:1398297600000,&#34;y&#34;:0.00150007335746622},{&#34;date&#34;:&#34;2014-04-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156559003191409,&#34;x&#34;:1398384000000,&#34;y&#34;:0.00156559003191409},{&#34;date&#34;:&#34;2014-04-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0028638148816032,&#34;x&#34;:1398643200000,&#34;y&#34;:0.0028638148816032},{&#34;date&#34;:&#34;2014-04-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00170800478467133,&#34;x&#34;:1398729600000,&#34;y&#34;:0.00170800478467133},{&#34;date&#34;:&#34;2014-04-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00105875020917615,&#34;x&#34;:1398816000000,&#34;y&#34;:0.00105875020917615},{&#34;date&#34;:&#34;2014-05-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00389061926590377,&#34;x&#34;:1398902400000,&#34;y&#34;:0.00389061926590377},{&#34;date&#34;:&#34;2014-05-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000875771905077209,&#34;x&#34;:1398988800000,&#34;y&#34;:0.000875771905077209},{&#34;date&#34;:&#34;2014-05-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000302082593616106,&#34;x&#34;:1399248000000,&#34;y&#34;:0.000302082593616106},{&#34;date&#34;:&#34;2014-05-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00377581232614828,&#34;x&#34;:1399334400000,&#34;y&#34;:0.00377581232614828},{&#34;date&#34;:&#34;2014-05-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00432694148901447,&#34;x&#34;:1399420800000,&#34;y&#34;:0.00432694148901447},{&#34;date&#34;:&#34;2014-05-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00541476252741813,&#34;x&#34;:1399507200000,&#34;y&#34;:0.00541476252741813},{&#34;date&#34;:&#34;2014-05-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130666361160008,&#34;x&#34;:1399593600000,&#34;y&#34;:0.00130666361160008},{&#34;date&#34;:&#34;2014-05-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106690615564849,&#34;x&#34;:1399852800000,&#34;y&#34;:0.00106690615564849},{&#34;date&#34;:&#34;2014-05-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00352556126676091,&#34;x&#34;:1399939200000,&#34;y&#34;:0.00352556126676091},{&#34;date&#34;:&#34;2014-05-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00139230203117092,&#34;x&#34;:1400025600000,&#34;y&#34;:0.00139230203117092},{&#34;date&#34;:&#34;2014-05-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00263900248643558,&#34;x&#34;:1400112000000,&#34;y&#34;:0.00263900248643558},{&#34;date&#34;:&#34;2014-05-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00282314343433784,&#34;x&#34;:1400198400000,&#34;y&#34;:0.00282314343433784},{&#34;date&#34;:&#34;2014-05-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000290963538759818,&#34;x&#34;:1400457600000,&#34;y&#34;:0.000290963538759818},{&#34;date&#34;:&#34;2014-05-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00121348207373204,&#34;x&#34;:1400544000000,&#34;y&#34;:0.00121348207373204},{&#34;date&#34;:&#34;2014-05-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00356217827640926,&#34;x&#34;:1400630400000,&#34;y&#34;:0.00356217827640926},{&#34;date&#34;:&#34;2014-05-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000775913446580488,&#34;x&#34;:1400716800000,&#34;y&#34;:0.000775913446580488},{&#34;date&#34;:&#34;2014-05-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00240507902895481,&#34;x&#34;:1400803200000,&#34;y&#34;:0.00240507902895481},{&#34;date&#34;:&#34;2014-05-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00359690871245207,&#34;x&#34;:1401148800000,&#34;y&#34;:0.00359690871245207},{&#34;date&#34;:&#34;2014-05-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000446458811152914,&#34;x&#34;:1401235200000,&#34;y&#34;:0.000446458811152914},{&#34;date&#34;:&#34;2014-05-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00134881889143732,&#34;x&#34;:1401321600000,&#34;y&#34;:0.00134881889143732},{&#34;date&#34;:&#34;2014-05-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:4.37586477533163e-05,&#34;x&#34;:1401408000000,&#34;y&#34;:4.37586477533163e-05},{&#34;date&#34;:&#34;2014-06-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:6.62895970695884e-05,&#34;x&#34;:1401667200000,&#34;y&#34;:6.62895970695884e-05},{&#34;date&#34;:&#34;2014-06-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00124667880122449,&#34;x&#34;:1401753600000,&#34;y&#34;:0.00124667880122449},{&#34;date&#34;:&#34;2014-06-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000486938615441381,&#34;x&#34;:1401840000000,&#34;y&#34;:0.000486938615441381},{&#34;date&#34;:&#34;2014-06-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000855713483865092,&#34;x&#34;:1401926400000,&#34;y&#34;:0.000855713483865092},{&#34;date&#34;:&#34;2014-06-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00196057510424582,&#34;x&#34;:1402012800000,&#34;y&#34;:0.00196057510424582},{&#34;date&#34;:&#34;2014-06-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000917943445872296,&#34;x&#34;:1402272000000,&#34;y&#34;:0.000917943445872296},{&#34;date&#34;:&#34;2014-06-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00176967951524932,&#34;x&#34;:1402358400000,&#34;y&#34;:0.00176967951524932},{&#34;date&#34;:&#34;2014-06-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00282423404314993,&#34;x&#34;:1402444800000,&#34;y&#34;:0.00282423404314993},{&#34;date&#34;:&#34;2014-06-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00483068423246947,&#34;x&#34;:1402531200000,&#34;y&#34;:0.00483068423246947},{&#34;date&#34;:&#34;2014-06-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0019474720610407,&#34;x&#34;:1402617600000,&#34;y&#34;:0.0019474720610407},{&#34;date&#34;:&#34;2014-06-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000259047311752497,&#34;x&#34;:1402876800000,&#34;y&#34;:0.000259047311752497},{&#34;date&#34;:&#34;2014-06-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000874624755127248,&#34;x&#34;:1402963200000,&#34;y&#34;:0.000874624755127248},{&#34;date&#34;:&#34;2014-06-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00162835712315407,&#34;x&#34;:1403049600000,&#34;y&#34;:0.00162835712315407},{&#34;date&#34;:&#34;2014-06-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00283043809754556,&#34;x&#34;:1403136000000,&#34;y&#34;:0.00283043809754556},{&#34;date&#34;:&#34;2014-06-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000730178279525006,&#34;x&#34;:1403222400000,&#34;y&#34;:0.000730178279525006},{&#34;date&#34;:&#34;2014-06-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000137424624938349,&#34;x&#34;:1403481600000,&#34;y&#34;:0.000137424624938349},{&#34;date&#34;:&#34;2014-06-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000547485209905004,&#34;x&#34;:1403568000000,&#34;y&#34;:0.000547485209905004},{&#34;date&#34;:&#34;2014-06-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00327809240197013,&#34;x&#34;:1403654400000,&#34;y&#34;:0.00327809240197013},{&#34;date&#34;:&#34;2014-06-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00152343341502415,&#34;x&#34;:1403740800000,&#34;y&#34;:0.00152343341502415},{&#34;date&#34;:&#34;2014-06-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00135515261171915,&#34;x&#34;:1403827200000,&#34;y&#34;:0.00135515261171915},{&#34;date&#34;:&#34;2014-06-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00160195578294905,&#34;x&#34;:1404086400000,&#34;y&#34;:0.00160195578294905},{&#34;date&#34;:&#34;2014-07-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000233602083369974,&#34;x&#34;:1404172800000,&#34;y&#34;:0.000233602083369974},{&#34;date&#34;:&#34;2014-07-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00174962461912607,&#34;x&#34;:1404259200000,&#34;y&#34;:0.00174962461912607},{&#34;date&#34;:&#34;2014-07-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000319944598172364,&#34;x&#34;:1404345600000,&#34;y&#34;:0.000319944598172364},{&#34;date&#34;:&#34;2014-07-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00365706027220958,&#34;x&#34;:1404691200000,&#34;y&#34;:0.00365706027220958},{&#34;date&#34;:&#34;2014-07-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0061451999312466,&#34;x&#34;:1404777600000,&#34;y&#34;:0.0061451999312466},{&#34;date&#34;:&#34;2014-07-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0008333097331233,&#34;x&#34;:1404864000000,&#34;y&#34;:0.0008333097331233},{&#34;date&#34;:&#34;2014-07-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000942594891875229,&#34;x&#34;:1404950400000,&#34;y&#34;:0.000942594891875229},{&#34;date&#34;:&#34;2014-07-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000882323784889272,&#34;x&#34;:1405036800000,&#34;y&#34;:0.000882323784889272},{&#34;date&#34;:&#34;2014-07-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00115369579766836,&#34;x&#34;:1405296000000,&#34;y&#34;:0.00115369579766836},{&#34;date&#34;:&#34;2014-07-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00258036734617897,&#34;x&#34;:1405382400000,&#34;y&#34;:0.00258036734617897},{&#34;date&#34;:&#34;2014-07-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000210557689839008,&#34;x&#34;:1405468800000,&#34;y&#34;:0.000210557689839008},{&#34;date&#34;:&#34;2014-07-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00307865459624111,&#34;x&#34;:1405555200000,&#34;y&#34;:0.00307865459624111},{&#34;date&#34;:&#34;2014-07-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00600957581655225,&#34;x&#34;:1405641600000,&#34;y&#34;:0.00600957581655225},{&#34;date&#34;:&#34;2014-07-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000141034509552021,&#34;x&#34;:1405900800000,&#34;y&#34;:0.000141034509552021},{&#34;date&#34;:&#34;2014-07-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00157316429465122,&#34;x&#34;:1405987200000,&#34;y&#34;:0.00157316429465122},{&#34;date&#34;:&#34;2014-07-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:5.79389393633141e-05,&#34;x&#34;:1406073600000,&#34;y&#34;:5.79389393633141e-05},{&#34;date&#34;:&#34;2014-07-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00298640090271562,&#34;x&#34;:1406160000000,&#34;y&#34;:0.00298640090271562},{&#34;date&#34;:&#34;2014-07-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000846890598854637,&#34;x&#34;:1406246400000,&#34;y&#34;:0.000846890598854637},{&#34;date&#34;:&#34;2014-07-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000486268231837349,&#34;x&#34;:1406505600000,&#34;y&#34;:0.000486268231837349},{&#34;date&#34;:&#34;2014-07-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00108729136628571,&#34;x&#34;:1406592000000,&#34;y&#34;:0.00108729136628571},{&#34;date&#34;:&#34;2014-07-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00240110003602132,&#34;x&#34;:1406678400000,&#34;y&#34;:0.00240110003602132},{&#34;date&#34;:&#34;2014-07-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00886385990974978,&#34;x&#34;:1406764800000,&#34;y&#34;:0.00886385990974978},{&#34;date&#34;:&#34;2014-08-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130950662628627,&#34;x&#34;:1406851200000,&#34;y&#34;:0.00130950662628627},{&#34;date&#34;:&#34;2014-08-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00414144612909378,&#34;x&#34;:1407110400000,&#34;y&#34;:0.00414144612909378},{&#34;date&#34;:&#34;2014-08-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00371691255412742,&#34;x&#34;:1407196800000,&#34;y&#34;:0.00371691255412742},{&#34;date&#34;:&#34;2014-08-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00349694714381284,&#34;x&#34;:1407283200000,&#34;y&#34;:0.00349694714381284},{&#34;date&#34;:&#34;2014-08-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103639681438946,&#34;x&#34;:1407369600000,&#34;y&#34;:0.00103639681438946},{&#34;date&#34;:&#34;2014-08-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00819731088788718,&#34;x&#34;:1407456000000,&#34;y&#34;:0.00819731088788718},{&#34;date&#34;:&#34;2014-08-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00320991418289113,&#34;x&#34;:1407715200000,&#34;y&#34;:0.00320991418289113},{&#34;date&#34;:&#34;2014-08-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00183064761761298,&#34;x&#34;:1407801600000,&#34;y&#34;:0.00183064761761298},{&#34;date&#34;:&#34;2014-08-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000796963386906422,&#34;x&#34;:1407888000000,&#34;y&#34;:0.000796963386906422},{&#34;date&#34;:&#34;2014-08-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000597107731675361,&#34;x&#34;:1407974400000,&#34;y&#34;:0.000597107731675361},{&#34;date&#34;:&#34;2014-08-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000147625995064866,&#34;x&#34;:1408060800000,&#34;y&#34;:0.000147625995064866},{&#34;date&#34;:&#34;2014-08-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00206935067639825,&#34;x&#34;:1408320000000,&#34;y&#34;:0.00206935067639825},{&#34;date&#34;:&#34;2014-08-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000960516267774979,&#34;x&#34;:1408406400000,&#34;y&#34;:0.000960516267774979},{&#34;date&#34;:&#34;2014-08-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00164247712046299,&#34;x&#34;:1408492800000,&#34;y&#34;:0.00164247712046299},{&#34;date&#34;:&#34;2014-08-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00137361399566395,&#34;x&#34;:1408579200000,&#34;y&#34;:0.00137361399566395},{&#34;date&#34;:&#34;2014-08-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00203472779931931,&#34;x&#34;:1408665600000,&#34;y&#34;:0.00203472779931931},{&#34;date&#34;:&#34;2014-08-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00119471810723019,&#34;x&#34;:1408924800000,&#34;y&#34;:0.00119471810723019},{&#34;date&#34;:&#34;2014-08-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00177017943673564,&#34;x&#34;:1409011200000,&#34;y&#34;:0.00177017943673564},{&#34;date&#34;:&#34;2014-08-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00167361871840368,&#34;x&#34;:1409097600000,&#34;y&#34;:0.00167361871840368},{&#34;date&#34;:&#34;2014-08-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00415390822110768,&#34;x&#34;:1409184000000,&#34;y&#34;:0.00415390822110768},{&#34;date&#34;:&#34;2014-08-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000553509892759291,&#34;x&#34;:1409270400000,&#34;y&#34;:0.000553509892759291},{&#34;date&#34;:&#34;2014-09-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0028580303501736,&#34;x&#34;:1409616000000,&#34;y&#34;:0.0028580303501736},{&#34;date&#34;:&#34;2014-09-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00441100910006302,&#34;x&#34;:1409702400000,&#34;y&#34;:0.00441100910006302},{&#34;date&#34;:&#34;2014-09-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000231429680361579,&#34;x&#34;:1409788800000,&#34;y&#34;:0.000231429680361579},{&#34;date&#34;:&#34;2014-09-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00276346914628592,&#34;x&#34;:1409875200000,&#34;y&#34;:0.00276346914628592},{&#34;date&#34;:&#34;2014-09-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00034802932604793,&#34;x&#34;:1410134400000,&#34;y&#34;:0.00034802932604793},{&#34;date&#34;:&#34;2014-09-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00233804117778962,&#34;x&#34;:1410220800000,&#34;y&#34;:0.00233804117778962},{&#34;date&#34;:&#34;2014-09-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178648151267642,&#34;x&#34;:1410307200000,&#34;y&#34;:0.00178648151267642},{&#34;date&#34;:&#34;2014-09-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000721554836218572,&#34;x&#34;:1410393600000,&#34;y&#34;:0.000721554836218572},{&#34;date&#34;:&#34;2014-09-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00455760000316874,&#34;x&#34;:1410480000000,&#34;y&#34;:0.00455760000316874},{&#34;date&#34;:&#34;2014-09-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00350688868934713,&#34;x&#34;:1410739200000,&#34;y&#34;:0.00350688868934713},{&#34;date&#34;:&#34;2014-09-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00422725297543705,&#34;x&#34;:1410825600000,&#34;y&#34;:0.00422725297543705},{&#34;date&#34;:&#34;2014-09-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281860847561002,&#34;x&#34;:1410912000000,&#34;y&#34;:0.00281860847561002},{&#34;date&#34;:&#34;2014-09-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00147408592681244,&#34;x&#34;:1410998400000,&#34;y&#34;:0.00147408592681244},{&#34;date&#34;:&#34;2014-09-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00215655991310362,&#34;x&#34;:1411084800000,&#34;y&#34;:0.00215655991310362},{&#34;date&#34;:&#34;2014-09-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00218257063330211,&#34;x&#34;:1411344000000,&#34;y&#34;:0.00218257063330211},{&#34;date&#34;:&#34;2014-09-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00060948260244335,&#34;x&#34;:1411430400000,&#34;y&#34;:0.00060948260244335},{&#34;date&#34;:&#34;2014-09-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00167606922803859,&#34;x&#34;:1411516800000,&#34;y&#34;:0.00167606922803859},{&#34;date&#34;:&#34;2014-09-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00536744976052472,&#34;x&#34;:1411603200000,&#34;y&#34;:0.00536744976052472},{&#34;date&#34;:&#34;2014-09-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000564206344653154,&#34;x&#34;:1411689600000,&#34;y&#34;:0.000564206344653154},{&#34;date&#34;:&#34;2014-09-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00229672644043357,&#34;x&#34;:1411948800000,&#34;y&#34;:0.00229672644043357},{&#34;date&#34;:&#34;2014-09-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00120139847585075,&#34;x&#34;:1412035200000,&#34;y&#34;:0.00120139847585075},{&#34;date&#34;:&#34;2014-10-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00214985386840889,&#34;x&#34;:1412121600000,&#34;y&#34;:0.00214985386840889},{&#34;date&#34;:&#34;2014-10-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0070625174291384,&#34;x&#34;:1412208000000,&#34;y&#34;:0.0070625174291384},{&#34;date&#34;:&#34;2014-10-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0039993124787582,&#34;x&#34;:1412294400000,&#34;y&#34;:0.0039993124787582},{&#34;date&#34;:&#34;2014-10-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406570964175735,&#34;x&#34;:1412553600000,&#34;y&#34;:0.00406570964175735},{&#34;date&#34;:&#34;2014-10-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00608770260280821,&#34;x&#34;:1412640000000,&#34;y&#34;:0.00608770260280821},{&#34;date&#34;:&#34;2014-10-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0100893179621323,&#34;x&#34;:1412726400000,&#34;y&#34;:0.0100893179621323},{&#34;date&#34;:&#34;2014-10-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0093044512515634,&#34;x&#34;:1412812800000,&#34;y&#34;:0.0093044512515634},{&#34;date&#34;:&#34;2014-10-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0012772359736668,&#34;x&#34;:1412899200000,&#34;y&#34;:0.0012772359736668},{&#34;date&#34;:&#34;2014-10-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0104442600151737,&#34;x&#34;:1413158400000,&#34;y&#34;:0.0104442600151737},{&#34;date&#34;:&#34;2014-10-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00466686830959002,&#34;x&#34;:1413244800000,&#34;y&#34;:0.00466686830959002},{&#34;date&#34;:&#34;2014-10-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00125758742696745,&#34;x&#34;:1413331200000,&#34;y&#34;:0.00125758742696745},{&#34;date&#34;:&#34;2014-10-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000746949848383797,&#34;x&#34;:1413417600000,&#34;y&#34;:0.000746949848383797},{&#34;date&#34;:&#34;2014-10-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000446330061162016,&#34;x&#34;:1413504000000,&#34;y&#34;:0.000446330061162016},{&#34;date&#34;:&#34;2014-10-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00724374124158148,&#34;x&#34;:1413763200000,&#34;y&#34;:0.00724374124158148},{&#34;date&#34;:&#34;2014-10-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00945699685916905,&#34;x&#34;:1413849600000,&#34;y&#34;:0.00945699685916905},{&#34;date&#34;:&#34;2014-10-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00226758765277367,&#34;x&#34;:1413936000000,&#34;y&#34;:0.00226758765277367},{&#34;date&#34;:&#34;2014-10-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00162200882440421,&#34;x&#34;:1414022400000,&#34;y&#34;:0.00162200882440421},{&#34;date&#34;:&#34;2014-10-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00245971519926177,&#34;x&#34;:1414108800000,&#34;y&#34;:0.00245971519926177},{&#34;date&#34;:&#34;2014-10-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000111437078117051,&#34;x&#34;:1414368000000,&#34;y&#34;:0.000111437078117051},{&#34;date&#34;:&#34;2014-10-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00464060315517396,&#34;x&#34;:1414454400000,&#34;y&#34;:0.00464060315517396},{&#34;date&#34;:&#34;2014-10-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000994038213760407,&#34;x&#34;:1414540800000,&#34;y&#34;:0.000994038213760407},{&#34;date&#34;:&#34;2014-10-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:8.24153890278114e-05,&#34;x&#34;:1414627200000,&#34;y&#34;:8.24153890278114e-05},{&#34;date&#34;:&#34;2014-10-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136078990878973,&#34;x&#34;:1414713600000,&#34;y&#34;:0.00136078990878973},{&#34;date&#34;:&#34;2014-11-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00476872564334884,&#34;x&#34;:1414972800000,&#34;y&#34;:0.00476872564334884},{&#34;date&#34;:&#34;2014-11-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00194937552489031,&#34;x&#34;:1415059200000,&#34;y&#34;:0.00194937552489031},{&#34;date&#34;:&#34;2014-11-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000904004054702433,&#34;x&#34;:1415145600000,&#34;y&#34;:0.000904004054702433},{&#34;date&#34;:&#34;2014-11-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00408408385962174,&#34;x&#34;:1415232000000,&#34;y&#34;:0.00408408385962174},{&#34;date&#34;:&#34;2014-11-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000264872917642302,&#34;x&#34;:1415318400000,&#34;y&#34;:0.000264872917642302},{&#34;date&#34;:&#34;2014-11-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00185908943461171,&#34;x&#34;:1415577600000,&#34;y&#34;:0.00185908943461171},{&#34;date&#34;:&#34;2014-11-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00501504118188602,&#34;x&#34;:1415664000000,&#34;y&#34;:0.00501504118188602},{&#34;date&#34;:&#34;2014-11-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00265893779930789,&#34;x&#34;:1415750400000,&#34;y&#34;:0.00265893779930789},{&#34;date&#34;:&#34;2014-11-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00216546413051731,&#34;x&#34;:1415836800000,&#34;y&#34;:0.00216546413051731},{&#34;date&#34;:&#34;2014-11-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00246891237286566,&#34;x&#34;:1415923200000,&#34;y&#34;:0.00246891237286566},{&#34;date&#34;:&#34;2014-11-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:9.41372941566312e-05,&#34;x&#34;:1416182400000,&#34;y&#34;:9.41372941566312e-05},{&#34;date&#34;:&#34;2014-11-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00254598014396055,&#34;x&#34;:1416268800000,&#34;y&#34;:0.00254598014396055},{&#34;date&#34;:&#34;2014-11-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:2.7174938674092e-05,&#34;x&#34;:1416355200000,&#34;y&#34;:2.7174938674092e-05},{&#34;date&#34;:&#34;2014-11-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00229655959266466,&#34;x&#34;:1416441600000,&#34;y&#34;:0.00229655959266466},{&#34;date&#34;:&#34;2014-11-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00189549887810964,&#34;x&#34;:1416528000000,&#34;y&#34;:0.00189549887810964},{&#34;date&#34;:&#34;2014-11-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000260583677516683,&#34;x&#34;:1416787200000,&#34;y&#34;:0.000260583677516683},{&#34;date&#34;:&#34;2014-11-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00203921965649436,&#34;x&#34;:1416873600000,&#34;y&#34;:0.00203921965649436},{&#34;date&#34;:&#34;2014-11-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:3.96736941195731e-06,&#34;x&#34;:1416960000000,&#34;y&#34;:3.96736941195731e-06},{&#34;date&#34;:&#34;2014-11-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000991448203063747,&#34;x&#34;:1417132800000,&#34;y&#34;:0.000991448203063747},{&#34;date&#34;:&#34;2014-12-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00315909482979975,&#34;x&#34;:1417392000000,&#34;y&#34;:0.00315909482979975},{&#34;date&#34;:&#34;2014-12-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00360565837034548,&#34;x&#34;:1417478400000,&#34;y&#34;:0.00360565837034548},{&#34;date&#34;:&#34;2014-12-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000671187015248425,&#34;x&#34;:1417564800000,&#34;y&#34;:0.000671187015248425},{&#34;date&#34;:&#34;2014-12-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000529501904159875,&#34;x&#34;:1417651200000,&#34;y&#34;:0.000529501904159875},{&#34;date&#34;:&#34;2014-12-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00175912866840544,&#34;x&#34;:1417737600000,&#34;y&#34;:0.00175912866840544},{&#34;date&#34;:&#34;2014-12-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000873646129684066,&#34;x&#34;:1417996800000,&#34;y&#34;:0.000873646129684066},{&#34;date&#34;:&#34;2014-12-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0023342024229448,&#34;x&#34;:1418083200000,&#34;y&#34;:0.0023342024229448},{&#34;date&#34;:&#34;2014-12-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00317063922796318,&#34;x&#34;:1418169600000,&#34;y&#34;:0.00317063922796318},{&#34;date&#34;:&#34;2014-12-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00423979642772988,&#34;x&#34;:1418256000000,&#34;y&#34;:0.00423979642772988},{&#34;date&#34;:&#34;2014-12-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0040882751945936,&#34;x&#34;:1418342400000,&#34;y&#34;:0.0040882751945936},{&#34;date&#34;:&#34;2014-12-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00777943296248288,&#34;x&#34;:1418601600000,&#34;y&#34;:0.00777943296248288},{&#34;date&#34;:&#34;2014-12-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00768636089900666,&#34;x&#34;:1418688000000,&#34;y&#34;:0.00768636089900666},{&#34;date&#34;:&#34;2014-12-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0124775738986566,&#34;x&#34;:1418774400000,&#34;y&#34;:0.0124775738986566},{&#34;date&#34;:&#34;2014-12-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0107834377209642,&#34;x&#34;:1418860800000,&#34;y&#34;:0.0107834377209642},{&#34;date&#34;:&#34;2014-12-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00153144229868774,&#34;x&#34;:1418947200000,&#34;y&#34;:0.00153144229868774},{&#34;date&#34;:&#34;2014-12-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000261767913493968,&#34;x&#34;:1419206400000,&#34;y&#34;:0.000261767913493968},{&#34;date&#34;:&#34;2014-12-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281002510430981,&#34;x&#34;:1419292800000,&#34;y&#34;:0.00281002510430981},{&#34;date&#34;:&#34;2014-12-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000985711761268521,&#34;x&#34;:1419379200000,&#34;y&#34;:0.000985711761268521},{&#34;date&#34;:&#34;2014-12-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00225208514274718,&#34;x&#34;:1419552000000,&#34;y&#34;:0.00225208514274718},{&#34;date&#34;:&#34;2014-12-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00115263765734909,&#34;x&#34;:1419811200000,&#34;y&#34;:0.00115263765734909},{&#34;date&#34;:&#34;2014-12-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00179371322443149,&#34;x&#34;:1419897600000,&#34;y&#34;:0.00179371322443149},{&#34;date&#34;:&#34;2014-12-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00668050594834836,&#34;x&#34;:1419984000000,&#34;y&#34;:0.00668050594834836},{&#34;date&#34;:&#34;2015-01-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00395677051677915,&#34;x&#34;:1420156800000,&#34;y&#34;:0.00395677051677915},{&#34;date&#34;:&#34;2015-01-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00362346472773006,&#34;x&#34;:1420416000000,&#34;y&#34;:0.00362346472773006},{&#34;date&#34;:&#34;2015-01-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:5.35915047082565e-05,&#34;x&#34;:1420502400000,&#34;y&#34;:5.35915047082565e-05},{&#34;date&#34;:&#34;2015-01-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00447041821256274,&#34;x&#34;:1420588800000,&#34;y&#34;:0.00447041821256274},{&#34;date&#34;:&#34;2015-01-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000670507797887281,&#34;x&#34;:1420675200000,&#34;y&#34;:0.000670507797887281},{&#34;date&#34;:&#34;2015-01-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00232322268857359,&#34;x&#34;:1420761600000,&#34;y&#34;:0.00232322268857359},{&#34;date&#34;:&#34;2015-01-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0055324501544945,&#34;x&#34;:1421020800000,&#34;y&#34;:0.0055324501544945},{&#34;date&#34;:&#34;2015-01-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00411443172418601,&#34;x&#34;:1421107200000,&#34;y&#34;:0.00411443172418601},{&#34;date&#34;:&#34;2015-01-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00182992367814795,&#34;x&#34;:1421193600000,&#34;y&#34;:0.00182992367814795},{&#34;date&#34;:&#34;2015-01-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00684786734873696,&#34;x&#34;:1421280000000,&#34;y&#34;:0.00684786734873696},{&#34;date&#34;:&#34;2015-01-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00517728592452819,&#34;x&#34;:1421366400000,&#34;y&#34;:0.00517728592452819},{&#34;date&#34;:&#34;2015-01-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00322047343366349,&#34;x&#34;:1421712000000,&#34;y&#34;:0.00322047343366349},{&#34;date&#34;:&#34;2015-01-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00474144338964312,&#34;x&#34;:1421798400000,&#34;y&#34;:0.00474144338964312},{&#34;date&#34;:&#34;2015-01-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00536853999227699,&#34;x&#34;:1421884800000,&#34;y&#34;:0.00536853999227699},{&#34;date&#34;:&#34;2015-01-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00431737006355696,&#34;x&#34;:1421971200000,&#34;y&#34;:0.00431737006355696},{&#34;date&#34;:&#34;2015-01-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00127446112543595,&#34;x&#34;:1422230400000,&#34;y&#34;:0.00127446112543595},{&#34;date&#34;:&#34;2015-01-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0069018612083931,&#34;x&#34;:1422316800000,&#34;y&#34;:0.0069018612083931},{&#34;date&#34;:&#34;2015-01-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00249742664827329,&#34;x&#34;:1422403200000,&#34;y&#34;:0.00249742664827329},{&#34;date&#34;:&#34;2015-01-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00233421320349214,&#34;x&#34;:1422489600000,&#34;y&#34;:0.00233421320349214},{&#34;date&#34;:&#34;2015-01-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00480908772662906,&#34;x&#34;:1422576000000,&#34;y&#34;:0.00480908772662906},{&#34;date&#34;:&#34;2015-02-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00242542796840435,&#34;x&#34;:1422835200000,&#34;y&#34;:0.00242542796840435},{&#34;date&#34;:&#34;2015-02-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00261338329411186,&#34;x&#34;:1422921600000,&#34;y&#34;:0.00261338329411186},{&#34;date&#34;:&#34;2015-02-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00198146309507166,&#34;x&#34;:1423008000000,&#34;y&#34;:0.00198146309507166},{&#34;date&#34;:&#34;2015-02-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00013164875324184,&#34;x&#34;:1423094400000,&#34;y&#34;:0.00013164875324184},{&#34;date&#34;:&#34;2015-02-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000544066084412995,&#34;x&#34;:1423180800000,&#34;y&#34;:0.000544066084412995},{&#34;date&#34;:&#34;2015-02-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000947089446149543,&#34;x&#34;:1423440000000,&#34;y&#34;:0.000947089446149543},{&#34;date&#34;:&#34;2015-02-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000175757503755772,&#34;x&#34;:1423526400000,&#34;y&#34;:0.000175757503755772},{&#34;date&#34;:&#34;2015-02-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000338261761013436,&#34;x&#34;:1423612800000,&#34;y&#34;:0.000338261761013436},{&#34;date&#34;:&#34;2015-02-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00100328702089229,&#34;x&#34;:1423699200000,&#34;y&#34;:0.00100328702089229},{&#34;date&#34;:&#34;2015-02-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00179271505344779,&#34;x&#34;:1423785600000,&#34;y&#34;:0.00179271505344779},{&#34;date&#34;:&#34;2015-02-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00230582211235819,&#34;x&#34;:1424131200000,&#34;y&#34;:0.00230582211235819},{&#34;date&#34;:&#34;2015-02-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00327919423348622,&#34;x&#34;:1424217600000,&#34;y&#34;:0.00327919423348622},{&#34;date&#34;:&#34;2015-02-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00242318352913266,&#34;x&#34;:1424304000000,&#34;y&#34;:0.00242318352913266},{&#34;date&#34;:&#34;2015-02-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000964435546642736,&#34;x&#34;:1424390400000,&#34;y&#34;:0.000964435546642736},{&#34;date&#34;:&#34;2015-02-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00117093313511718,&#34;x&#34;:1424649600000,&#34;y&#34;:0.00117093313511718},{&#34;date&#34;:&#34;2015-02-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000347530115280883,&#34;x&#34;:1424736000000,&#34;y&#34;:0.000347530115280883},{&#34;date&#34;:&#34;2015-02-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156198286358544,&#34;x&#34;:1424822400000,&#34;y&#34;:0.00156198286358544},{&#34;date&#34;:&#34;2015-02-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000101984604233385,&#34;x&#34;:1424908800000,&#34;y&#34;:0.000101984604233385},{&#34;date&#34;:&#34;2015-02-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00182582223293412,&#34;x&#34;:1424995200000,&#34;y&#34;:0.00182582223293412},{&#34;date&#34;:&#34;2015-03-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00288086391998691,&#34;x&#34;:1425254400000,&#34;y&#34;:0.00288086391998691},{&#34;date&#34;:&#34;2015-03-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00169682218549016,&#34;x&#34;:1425340800000,&#34;y&#34;:0.00169682218549016},{&#34;date&#34;:&#34;2015-03-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00299797546408927,&#34;x&#34;:1425427200000,&#34;y&#34;:0.00299797546408927},{&#34;date&#34;:&#34;2015-03-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000705709812426563,&#34;x&#34;:1425513600000,&#34;y&#34;:0.000705709812426563},{&#34;date&#34;:&#34;2015-03-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00674386588619811,&#34;x&#34;:1425600000000,&#34;y&#34;:0.00674386588619811},{&#34;date&#34;:&#34;2015-03-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00442197188878407,&#34;x&#34;:1425859200000,&#34;y&#34;:0.00442197188878407},{&#34;date&#34;:&#34;2015-03-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00315569341433053,&#34;x&#34;:1425945600000,&#34;y&#34;:0.00315569341433053},{&#34;date&#34;:&#34;2015-03-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000474564201651918,&#34;x&#34;:1426032000000,&#34;y&#34;:0.000474564201651918},{&#34;date&#34;:&#34;2015-03-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0031755201986522,&#34;x&#34;:1426118400000,&#34;y&#34;:0.0031755201986522},{&#34;date&#34;:&#34;2015-03-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000442805972450956,&#34;x&#34;:1426204800000,&#34;y&#34;:0.000442805972450956},{&#34;date&#34;:&#34;2015-03-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00145573918699198,&#34;x&#34;:1426464000000,&#34;y&#34;:0.00145573918699198},{&#34;date&#34;:&#34;2015-03-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013937081708804,&#34;x&#34;:1426550400000,&#34;y&#34;:0.0013937081708804},{&#34;date&#34;:&#34;2015-03-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000270695042425027,&#34;x&#34;:1426636800000,&#34;y&#34;:0.000270695042425027},{&#34;date&#34;:&#34;2015-03-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00270669488153355,&#34;x&#34;:1426723200000,&#34;y&#34;:0.00270669488153355},{&#34;date&#34;:&#34;2015-03-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000153771958484089,&#34;x&#34;:1426809600000,&#34;y&#34;:0.000153771958484089},{&#34;date&#34;:&#34;2015-03-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00096664476767556,&#34;x&#34;:1427068800000,&#34;y&#34;:0.00096664476767556},{&#34;date&#34;:&#34;2015-03-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00280287339960634,&#34;x&#34;:1427155200000,&#34;y&#34;:0.00280287339960634},{&#34;date&#34;:&#34;2015-03-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00574731265276986,&#34;x&#34;:1427241600000,&#34;y&#34;:0.00574731265276986},{&#34;date&#34;:&#34;2015-03-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:2.69665922843373e-05,&#34;x&#34;:1427328000000,&#34;y&#34;:2.69665922843373e-05},{&#34;date&#34;:&#34;2015-03-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00124996438604877,&#34;x&#34;:1427414400000,&#34;y&#34;:0.00124996438604877},{&#34;date&#34;:&#34;2015-03-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000369263023341724,&#34;x&#34;:1427673600000,&#34;y&#34;:0.000369263023341724},{&#34;date&#34;:&#34;2015-03-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00333011690004239,&#34;x&#34;:1427760000000,&#34;y&#34;:0.00333011690004239},{&#34;date&#34;:&#34;2015-04-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000800734527692391,&#34;x&#34;:1427846400000,&#34;y&#34;:0.000800734527692391},{&#34;date&#34;:&#34;2015-04-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00211113388134838,&#34;x&#34;:1427932800000,&#34;y&#34;:0.00211113388134838},{&#34;date&#34;:&#34;2015-04-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00420722444446628,&#34;x&#34;:1428278400000,&#34;y&#34;:0.00420722444446628},{&#34;date&#34;:&#34;2015-04-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00468779581382743,&#34;x&#34;:1428364800000,&#34;y&#34;:0.00468779581382743},{&#34;date&#34;:&#34;2015-04-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00202548638905039,&#34;x&#34;:1428451200000,&#34;y&#34;:0.00202548638905039},{&#34;date&#34;:&#34;2015-04-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00271888967659028,&#34;x&#34;:1428537600000,&#34;y&#34;:0.00271888967659028},{&#34;date&#34;:&#34;2015-04-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00254943812031821,&#34;x&#34;:1428624000000,&#34;y&#34;:0.00254943812031821},{&#34;date&#34;:&#34;2015-04-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000723113907213286,&#34;x&#34;:1428883200000,&#34;y&#34;:0.000723113907213286},{&#34;date&#34;:&#34;2015-04-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000824328027385011,&#34;x&#34;:1428969600000,&#34;y&#34;:0.000824328027385011},{&#34;date&#34;:&#34;2015-04-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000319171035078047,&#34;x&#34;:1429056000000,&#34;y&#34;:0.000319171035078047},{&#34;date&#34;:&#34;2015-04-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000237303743723273,&#34;x&#34;:1429142400000,&#34;y&#34;:0.000237303743723273},{&#34;date&#34;:&#34;2015-04-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00142556356502989,&#34;x&#34;:1429228800000,&#34;y&#34;:0.00142556356502989},{&#34;date&#34;:&#34;2015-04-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00120494144999053,&#34;x&#34;:1429488000000,&#34;y&#34;:0.00120494144999053},{&#34;date&#34;:&#34;2015-04-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00243306536885689,&#34;x&#34;:1429574400000,&#34;y&#34;:0.00243306536885689},{&#34;date&#34;:&#34;2015-04-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000642918523424196,&#34;x&#34;:1429660800000,&#34;y&#34;:0.000642918523424196},{&#34;date&#34;:&#34;2015-04-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000847782712402617,&#34;x&#34;:1429747200000,&#34;y&#34;:0.000847782712402617},{&#34;date&#34;:&#34;2015-04-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013466046179942,&#34;x&#34;:1429833600000,&#34;y&#34;:0.0013466046179942},{&#34;date&#34;:&#34;2015-04-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00654832948070044,&#34;x&#34;:1430092800000,&#34;y&#34;:0.00654832948070044},{&#34;date&#34;:&#34;2015-04-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00678489140048155,&#34;x&#34;:1430179200000,&#34;y&#34;:0.00678489140048155},{&#34;date&#34;:&#34;2015-04-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000777663114918571,&#34;x&#34;:1430265600000,&#34;y&#34;:0.000777663114918571},{&#34;date&#34;:&#34;2015-04-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00371967268152809,&#34;x&#34;:1430352000000,&#34;y&#34;:0.00371967268152809},{&#34;date&#34;:&#34;2015-05-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00346225141118423,&#34;x&#34;:1430438400000,&#34;y&#34;:0.00346225141118423},{&#34;date&#34;:&#34;2015-05-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000107364674304658,&#34;x&#34;:1430697600000,&#34;y&#34;:0.000107364674304658},{&#34;date&#34;:&#34;2015-05-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:3.08138475900062e-05,&#34;x&#34;:1430784000000,&#34;y&#34;:3.08138475900062e-05},{&#34;date&#34;:&#34;2015-05-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00293495531587135,&#34;x&#34;:1430870400000,&#34;y&#34;:0.00293495531587135},{&#34;date&#34;:&#34;2015-05-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00373552826403472,&#34;x&#34;:1430956800000,&#34;y&#34;:0.00373552826403472},{&#34;date&#34;:&#34;2015-05-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000568415536384584,&#34;x&#34;:1431043200000,&#34;y&#34;:0.000568415536384584},{&#34;date&#34;:&#34;2015-05-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:6.1954636984678e-05,&#34;x&#34;:1431302400000,&#34;y&#34;:6.1954636984678e-05},{&#34;date&#34;:&#34;2015-05-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00197403080935961,&#34;x&#34;:1431388800000,&#34;y&#34;:0.00197403080935961},{&#34;date&#34;:&#34;2015-05-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00216174101677157,&#34;x&#34;:1431475200000,&#34;y&#34;:0.00216174101677157},{&#34;date&#34;:&#34;2015-05-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00137483653164649,&#34;x&#34;:1431561600000,&#34;y&#34;:0.00137483653164649},{&#34;date&#34;:&#34;2015-05-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000270038671279347,&#34;x&#34;:1431648000000,&#34;y&#34;:0.000270038671279347},{&#34;date&#34;:&#34;2015-05-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00382533238668263,&#34;x&#34;:1431907200000,&#34;y&#34;:0.00382533238668263},{&#34;date&#34;:&#34;2015-05-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:6.50218287763947e-05,&#34;x&#34;:1431993600000,&#34;y&#34;:6.50218287763947e-05},{&#34;date&#34;:&#34;2015-05-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000243958145563688,&#34;x&#34;:1432080000000,&#34;y&#34;:0.000243958145563688},{&#34;date&#34;:&#34;2015-05-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00213951116460373,&#34;x&#34;:1432166400000,&#34;y&#34;:0.00213951116460373},{&#34;date&#34;:&#34;2015-05-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00162751922109553,&#34;x&#34;:1432252800000,&#34;y&#34;:0.00162751922109553},{&#34;date&#34;:&#34;2015-05-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:2.74205103022677e-05,&#34;x&#34;:1432598400000,&#34;y&#34;:2.74205103022677e-05},{&#34;date&#34;:&#34;2015-05-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00146570580680937,&#34;x&#34;:1432684800000,&#34;y&#34;:0.00146570580680937},{&#34;date&#34;:&#34;2015-05-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00114926777927846,&#34;x&#34;:1432771200000,&#34;y&#34;:0.00114926777927846},{&#34;date&#34;:&#34;2015-05-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000488777570115981,&#34;x&#34;:1432857600000,&#34;y&#34;:0.000488777570115981},{&#34;date&#34;:&#34;2015-06-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00407131652498733,&#34;x&#34;:1433116800000,&#34;y&#34;:0.00407131652498733},{&#34;date&#34;:&#34;2015-06-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00204226604847051,&#34;x&#34;:1433203200000,&#34;y&#34;:0.00204226604847051},{&#34;date&#34;:&#34;2015-06-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000700663281221754,&#34;x&#34;:1433289600000,&#34;y&#34;:0.000700663281221754},{&#34;date&#34;:&#34;2015-06-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205612474736232,&#34;x&#34;:1433376000000,&#34;y&#34;:0.00205612474736232},{&#34;date&#34;:&#34;2015-06-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00295680947839454,&#34;x&#34;:1433462400000,&#34;y&#34;:0.00295680947839454},{&#34;date&#34;:&#34;2015-06-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00157716240117475,&#34;x&#34;:1433721600000,&#34;y&#34;:0.00157716240117475},{&#34;date&#34;:&#34;2015-06-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000509103297587919,&#34;x&#34;:1433808000000,&#34;y&#34;:0.000509103297587919},{&#34;date&#34;:&#34;2015-06-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00144361579136164,&#34;x&#34;:1433894400000,&#34;y&#34;:0.00144361579136164},{&#34;date&#34;:&#34;2015-06-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000743861394920468,&#34;x&#34;:1433980800000,&#34;y&#34;:0.000743861394920468},{&#34;date&#34;:&#34;2015-06-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00270145927928372,&#34;x&#34;:1434067200000,&#34;y&#34;:0.00270145927928372},{&#34;date&#34;:&#34;2015-06-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000926839353652406,&#34;x&#34;:1434326400000,&#34;y&#34;:0.000926839353652406},{&#34;date&#34;:&#34;2015-06-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000378560473414271,&#34;x&#34;:1434412800000,&#34;y&#34;:0.000378560473414271},{&#34;date&#34;:&#34;2015-06-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000606422038276323,&#34;x&#34;:1434499200000,&#34;y&#34;:0.000606422038276323},{&#34;date&#34;:&#34;2015-06-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00235093666152922,&#34;x&#34;:1434585600000,&#34;y&#34;:0.00235093666152922},{&#34;date&#34;:&#34;2015-06-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0011336978173662,&#34;x&#34;:1434672000000,&#34;y&#34;:0.0011336978173662},{&#34;date&#34;:&#34;2015-06-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0068783144157268,&#34;x&#34;:1434931200000,&#34;y&#34;:0.0068783144157268},{&#34;date&#34;:&#34;2015-06-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00123664431681601,&#34;x&#34;:1435017600000,&#34;y&#34;:0.00123664431681601},{&#34;date&#34;:&#34;2015-06-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00284828561798717,&#34;x&#34;:1435104000000,&#34;y&#34;:0.00284828561798717},{&#34;date&#34;:&#34;2015-06-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000491312260733792,&#34;x&#34;:1435190400000,&#34;y&#34;:0.000491312260733792},{&#34;date&#34;:&#34;2015-06-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00280120919641011,&#34;x&#34;:1435276800000,&#34;y&#34;:0.00280120919641011},{&#34;date&#34;:&#34;2015-06-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00963998417169128,&#34;x&#34;:1435536000000,&#34;y&#34;:0.00963998417169128},{&#34;date&#34;:&#34;2015-06-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00614788463974238,&#34;x&#34;:1435622400000,&#34;y&#34;:0.00614788463974238},{&#34;date&#34;:&#34;2015-07-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000406467434416981,&#34;x&#34;:1435708800000,&#34;y&#34;:0.000406467434416981},{&#34;date&#34;:&#34;2015-07-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000811571940198679,&#34;x&#34;:1435795200000,&#34;y&#34;:0.000811571940198679},{&#34;date&#34;:&#34;2015-07-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00509080325444627,&#34;x&#34;:1436140800000,&#34;y&#34;:0.00509080325444627},{&#34;date&#34;:&#34;2015-07-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00807239426729424,&#34;x&#34;:1436227200000,&#34;y&#34;:0.00807239426729424},{&#34;date&#34;:&#34;2015-07-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00774965792847944,&#34;x&#34;:1436313600000,&#34;y&#34;:0.00774965792847944},{&#34;date&#34;:&#34;2015-07-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00304060787414298,&#34;x&#34;:1436400000000,&#34;y&#34;:0.00304060787414298},{&#34;date&#34;:&#34;2015-07-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00179563015071285,&#34;x&#34;:1436486400000,&#34;y&#34;:0.00179563015071285},{&#34;date&#34;:&#34;2015-07-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00465201680262755,&#34;x&#34;:1436745600000,&#34;y&#34;:0.00465201680262755},{&#34;date&#34;:&#34;2015-07-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00164811486400728,&#34;x&#34;:1436832000000,&#34;y&#34;:0.00164811486400728},{&#34;date&#34;:&#34;2015-07-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156774204135862,&#34;x&#34;:1436918400000,&#34;y&#34;:0.00156774204135862},{&#34;date&#34;:&#34;2015-07-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000354375284437844,&#34;x&#34;:1437004800000,&#34;y&#34;:0.000354375284437844},{&#34;date&#34;:&#34;2015-07-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00131872471606728,&#34;x&#34;:1437091200000,&#34;y&#34;:0.00131872471606728},{&#34;date&#34;:&#34;2015-07-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0015726815682986,&#34;x&#34;:1437350400000,&#34;y&#34;:0.0015726815682986},{&#34;date&#34;:&#34;2015-07-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000525162727281741,&#34;x&#34;:1437436800000,&#34;y&#34;:0.000525162727281741},{&#34;date&#34;:&#34;2015-07-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00139037651660623,&#34;x&#34;:1437523200000,&#34;y&#34;:0.00139037651660623},{&#34;date&#34;:&#34;2015-07-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00581183024543379,&#34;x&#34;:1437609600000,&#34;y&#34;:0.00581183024543379},{&#34;date&#34;:&#34;2015-07-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00241219761518981,&#34;x&#34;:1437696000000,&#34;y&#34;:0.00241219761518981},{&#34;date&#34;:&#34;2015-07-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000763883990557287,&#34;x&#34;:1437955200000,&#34;y&#34;:0.000763883990557287},{&#34;date&#34;:&#34;2015-07-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00299993049672719,&#34;x&#34;:1438041600000,&#34;y&#34;:0.00299993049672719},{&#34;date&#34;:&#34;2015-07-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00220400241253419,&#34;x&#34;:1438128000000,&#34;y&#34;:0.00220400241253419},{&#34;date&#34;:&#34;2015-07-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000885402065001293,&#34;x&#34;:1438214400000,&#34;y&#34;:0.000885402065001293},{&#34;date&#34;:&#34;2015-07-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00447994683444991,&#34;x&#34;:1438300800000,&#34;y&#34;:0.00447994683444991},{&#34;date&#34;:&#34;2015-08-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00304606040265679,&#34;x&#34;:1438560000000,&#34;y&#34;:0.00304606040265679},{&#34;date&#34;:&#34;2015-08-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:8.54531067407526e-05,&#34;x&#34;:1438646400000,&#34;y&#34;:8.54531067407526e-05},{&#34;date&#34;:&#34;2015-08-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.003746877821574,&#34;x&#34;:1438732800000,&#34;y&#34;:0.003746877821574},{&#34;date&#34;:&#34;2015-08-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00206132552144418,&#34;x&#34;:1438819200000,&#34;y&#34;:0.00206132552144418},{&#34;date&#34;:&#34;2015-08-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00078137333722023,&#34;x&#34;:1438905600000,&#34;y&#34;:0.00078137333722023},{&#34;date&#34;:&#34;2015-08-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00629187034087075,&#34;x&#34;:1439164800000,&#34;y&#34;:0.00629187034087075},{&#34;date&#34;:&#34;2015-08-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00137798053706101,&#34;x&#34;:1439251200000,&#34;y&#34;:0.00137798053706101},{&#34;date&#34;:&#34;2015-08-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00576804908886543,&#34;x&#34;:1439337600000,&#34;y&#34;:0.00576804908886543},{&#34;date&#34;:&#34;2015-08-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00311120713321267,&#34;x&#34;:1439424000000,&#34;y&#34;:0.00311120713321267},{&#34;date&#34;:&#34;2015-08-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00355661003054919,&#34;x&#34;:1439510400000,&#34;y&#34;:0.00355661003054919},{&#34;date&#34;:&#34;2015-08-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00330562134101764,&#34;x&#34;:1439769600000,&#34;y&#34;:0.00330562134101764},{&#34;date&#34;:&#34;2015-08-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00200251053844045,&#34;x&#34;:1439856000000,&#34;y&#34;:0.00200251053844045},{&#34;date&#34;:&#34;2015-08-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00276658191142795,&#34;x&#34;:1439942400000,&#34;y&#34;:0.00276658191142795},{&#34;date&#34;:&#34;2015-08-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00556411265509235,&#34;x&#34;:1440028800000,&#34;y&#34;:0.00556411265509235},{&#34;date&#34;:&#34;2015-08-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0171847059316796,&#34;x&#34;:1440115200000,&#34;y&#34;:0.0171847059316796},{&#34;date&#34;:&#34;2015-08-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0246145137540276,&#34;x&#34;:1440374400000,&#34;y&#34;:0.0246145137540276},{&#34;date&#34;:&#34;2015-08-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0145503163878593,&#34;x&#34;:1440460800000,&#34;y&#34;:0.0145503163878593},{&#34;date&#34;:&#34;2015-08-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0297846625793239,&#34;x&#34;:1440547200000,&#34;y&#34;:0.0297846625793239},{&#34;date&#34;:&#34;2015-08-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0112745785635245,&#34;x&#34;:1440633600000,&#34;y&#34;:0.0112745785635245},{&#34;date&#34;:&#34;2015-08-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000652500025708383,&#34;x&#34;:1440720000000,&#34;y&#34;:0.000652500025708383},{&#34;date&#34;:&#34;2015-08-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00412055162031694,&#34;x&#34;:1440979200000,&#34;y&#34;:0.00412055162031694},{&#34;date&#34;:&#34;2015-09-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00604123138552932,&#34;x&#34;:1441065600000,&#34;y&#34;:0.00604123138552932},{&#34;date&#34;:&#34;2015-09-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00311910901748417,&#34;x&#34;:1441152000000,&#34;y&#34;:0.00311910901748417},{&#34;date&#34;:&#34;2015-09-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00217445455632374,&#34;x&#34;:1441238400000,&#34;y&#34;:0.00217445455632374},{&#34;date&#34;:&#34;2015-09-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00041940110598717,&#34;x&#34;:1441324800000,&#34;y&#34;:0.00041940110598717},{&#34;date&#34;:&#34;2015-09-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00639249519682666,&#34;x&#34;:1441670400000,&#34;y&#34;:0.00639249519682666},{&#34;date&#34;:&#34;2015-09-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0140990892360165,&#34;x&#34;:1441756800000,&#34;y&#34;:0.0140990892360165},{&#34;date&#34;:&#34;2015-09-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00623370926371633,&#34;x&#34;:1441843200000,&#34;y&#34;:0.00623370926371633},{&#34;date&#34;:&#34;2015-09-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00602317572435243,&#34;x&#34;:1441929600000,&#34;y&#34;:0.00602317572435243},{&#34;date&#34;:&#34;2015-09-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00139710374113922,&#34;x&#34;:1442188800000,&#34;y&#34;:0.00139710374113922},{&#34;date&#34;:&#34;2015-09-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00587095100687109,&#34;x&#34;:1442275200000,&#34;y&#34;:0.00587095100687109},{&#34;date&#34;:&#34;2015-09-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00238667462773552,&#34;x&#34;:1442361600000,&#34;y&#34;:0.00238667462773552},{&#34;date&#34;:&#34;2015-09-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00286420083260528,&#34;x&#34;:1442448000000,&#34;y&#34;:0.00286420083260528},{&#34;date&#34;:&#34;2015-09-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00040238550366976,&#34;x&#34;:1442534400000,&#34;y&#34;:0.00040238550366976},{&#34;date&#34;:&#34;2015-09-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00312927932426035,&#34;x&#34;:1442793600000,&#34;y&#34;:0.00312927932426035},{&#34;date&#34;:&#34;2015-09-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00535824984915497,&#34;x&#34;:1442880000000,&#34;y&#34;:0.00535824984915497},{&#34;date&#34;:&#34;2015-09-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000822491154298188,&#34;x&#34;:1442966400000,&#34;y&#34;:0.000822491154298188},{&#34;date&#34;:&#34;2015-09-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00224123623473526,&#34;x&#34;:1443052800000,&#34;y&#34;:0.00224123623473526},{&#34;date&#34;:&#34;2015-09-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0138344691619113,&#34;x&#34;:1443139200000,&#34;y&#34;:0.0138344691619113},{&#34;date&#34;:&#34;2015-09-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00357444326627458,&#34;x&#34;:1443398400000,&#34;y&#34;:0.00357444326627458},{&#34;date&#34;:&#34;2015-09-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00524808800446163,&#34;x&#34;:1443484800000,&#34;y&#34;:0.00524808800446163},{&#34;date&#34;:&#34;2015-09-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00191601260547396,&#34;x&#34;:1443571200000,&#34;y&#34;:0.00191601260547396},{&#34;date&#34;:&#34;2015-10-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00161335278422444,&#34;x&#34;:1443657600000,&#34;y&#34;:0.00161335278422444},{&#34;date&#34;:&#34;2015-10-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00401563431263661,&#34;x&#34;:1443744000000,&#34;y&#34;:0.00401563431263661},{&#34;date&#34;:&#34;2015-10-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00368765685413026,&#34;x&#34;:1444003200000,&#34;y&#34;:0.00368765685413026},{&#34;date&#34;:&#34;2015-10-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00296462790166401,&#34;x&#34;:1444089600000,&#34;y&#34;:0.00296462790166401},{&#34;date&#34;:&#34;2015-10-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00356094316941773,&#34;x&#34;:1444176000000,&#34;y&#34;:0.00356094316941773},{&#34;date&#34;:&#34;2015-10-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00349268333631326,&#34;x&#34;:1444262400000,&#34;y&#34;:0.00349268333631326},{&#34;date&#34;:&#34;2015-10-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00411732838803702,&#34;x&#34;:1444348800000,&#34;y&#34;:0.00411732838803702},{&#34;date&#34;:&#34;2015-10-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000457143179134392,&#34;x&#34;:1444608000000,&#34;y&#34;:0.000457143179134392},{&#34;date&#34;:&#34;2015-10-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00175946600828844,&#34;x&#34;:1444694400000,&#34;y&#34;:0.00175946600828844},{&#34;date&#34;:&#34;2015-10-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000761371757338223,&#34;x&#34;:1444780800000,&#34;y&#34;:0.000761371757338223},{&#34;date&#34;:&#34;2015-10-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00483450335566792,&#34;x&#34;:1444867200000,&#34;y&#34;:0.00483450335566792},{&#34;date&#34;:&#34;2015-10-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0009009931278971,&#34;x&#34;:1444953600000,&#34;y&#34;:0.0009009931278971},{&#34;date&#34;:&#34;2015-10-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00161812225629585,&#34;x&#34;:1445212800000,&#34;y&#34;:0.00161812225629585},{&#34;date&#34;:&#34;2015-10-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000847963004616699,&#34;x&#34;:1445299200000,&#34;y&#34;:0.000847963004616699},{&#34;date&#34;:&#34;2015-10-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00449553817830094,&#34;x&#34;:1445385600000,&#34;y&#34;:0.00449553817830094},{&#34;date&#34;:&#34;2015-10-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00412720015707421,&#34;x&#34;:1445472000000,&#34;y&#34;:0.00412720015707421},{&#34;date&#34;:&#34;2015-10-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0075915547846696,&#34;x&#34;:1445558400000,&#34;y&#34;:0.0075915547846696},{&#34;date&#34;:&#34;2015-10-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00413753895445339,&#34;x&#34;:1445817600000,&#34;y&#34;:0.00413753895445339},{&#34;date&#34;:&#34;2015-10-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00186023814882855,&#34;x&#34;:1445904000000,&#34;y&#34;:0.00186023814882855},{&#34;date&#34;:&#34;2015-10-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0027230691101985,&#34;x&#34;:1445990400000,&#34;y&#34;:0.0027230691101985},{&#34;date&#34;:&#34;2015-10-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00127307043453564,&#34;x&#34;:1446076800000,&#34;y&#34;:0.00127307043453564},{&#34;date&#34;:&#34;2015-10-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208697975205613,&#34;x&#34;:1446163200000,&#34;y&#34;:0.00208697975205613},{&#34;date&#34;:&#34;2015-11-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0094658082655116,&#34;x&#34;:1446422400000,&#34;y&#34;:0.0094658082655116},{&#34;date&#34;:&#34;2015-11-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00177553400072022,&#34;x&#34;:1446508800000,&#34;y&#34;:0.00177553400072022},{&#34;date&#34;:&#34;2015-11-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00151539269324002,&#34;x&#34;:1446595200000,&#34;y&#34;:0.00151539269324002},{&#34;date&#34;:&#34;2015-11-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000186268602158622,&#34;x&#34;:1446681600000,&#34;y&#34;:0.000186268602158622},{&#34;date&#34;:&#34;2015-11-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00348294025067781,&#34;x&#34;:1446768000000,&#34;y&#34;:0.00348294025067781},{&#34;date&#34;:&#34;2015-11-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00392325383365242,&#34;x&#34;:1447027200000,&#34;y&#34;:0.00392325383365242},{&#34;date&#34;:&#34;2015-11-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00302523584044596,&#34;x&#34;:1447113600000,&#34;y&#34;:0.00302523584044596},{&#34;date&#34;:&#34;2015-11-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00407952531120488,&#34;x&#34;:1447200000000,&#34;y&#34;:0.00407952531120488},{&#34;date&#34;:&#34;2015-11-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00640934431579107,&#34;x&#34;:1447286400000,&#34;y&#34;:0.00640934431579107},{&#34;date&#34;:&#34;2015-11-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00061421375038837,&#34;x&#34;:1447372800000,&#34;y&#34;:0.00061421375038837},{&#34;date&#34;:&#34;2015-11-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00881911536493924,&#34;x&#34;:1447632000000,&#34;y&#34;:0.00881911536493924},{&#34;date&#34;:&#34;2015-11-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00409082751160914,&#34;x&#34;:1447718400000,&#34;y&#34;:0.00409082751160914},{&#34;date&#34;:&#34;2015-11-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00373578110429996,&#34;x&#34;:1447804800000,&#34;y&#34;:0.00373578110429996},{&#34;date&#34;:&#34;2015-11-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000940209145386004,&#34;x&#34;:1447891200000,&#34;y&#34;:0.000940209145386004},{&#34;date&#34;:&#34;2015-11-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00409924729863848,&#34;x&#34;:1447977600000,&#34;y&#34;:0.00409924729863848},{&#34;date&#34;:&#34;2015-11-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00077736955312196,&#34;x&#34;:1448236800000,&#34;y&#34;:0.00077736955312196},{&#34;date&#34;:&#34;2015-11-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00725924885664988,&#34;x&#34;:1448323200000,&#34;y&#34;:0.00725924885664988},{&#34;date&#34;:&#34;2015-11-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0023727074013492,&#34;x&#34;:1448409600000,&#34;y&#34;:0.0023727074013492},{&#34;date&#34;:&#34;2015-11-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00285667605279557,&#34;x&#34;:1448582400000,&#34;y&#34;:0.00285667605279557},{&#34;date&#34;:&#34;2015-11-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000540441757668088,&#34;x&#34;:1448841600000,&#34;y&#34;:0.000540441757668088},{&#34;date&#34;:&#34;2015-12-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281707396194064,&#34;x&#34;:1448928000000,&#34;y&#34;:0.00281707396194064},{&#34;date&#34;:&#34;2015-12-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00380555182760584,&#34;x&#34;:1449014400000,&#34;y&#34;:0.00380555182760584},{&#34;date&#34;:&#34;2015-12-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00368604681807069,&#34;x&#34;:1449100800000,&#34;y&#34;:0.00368604681807069},{&#34;date&#34;:&#34;2015-12-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0157260417998821,&#34;x&#34;:1449187200000,&#34;y&#34;:0.0157260417998821},{&#34;date&#34;:&#34;2015-12-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00259219326445448,&#34;x&#34;:1449446400000,&#34;y&#34;:0.00259219326445448},{&#34;date&#34;:&#34;2015-12-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000502732151715991,&#34;x&#34;:1449532800000,&#34;y&#34;:0.000502732151715991},{&#34;date&#34;:&#34;2015-12-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00507356066681386,&#34;x&#34;:1449619200000,&#34;y&#34;:0.00507356066681386},{&#34;date&#34;:&#34;2015-12-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00478650841022692,&#34;x&#34;:1449705600000,&#34;y&#34;:0.00478650841022692},{&#34;date&#34;:&#34;2015-12-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00378942098803433,&#34;x&#34;:1449792000000,&#34;y&#34;:0.00378942098803433},{&#34;date&#34;:&#34;2015-12-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0051286889839488,&#34;x&#34;:1450051200000,&#34;y&#34;:0.0051286889839488},{&#34;date&#34;:&#34;2015-12-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00572619680990926,&#34;x&#34;:1450137600000,&#34;y&#34;:0.00572619680990926},{&#34;date&#34;:&#34;2015-12-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000756598335299976,&#34;x&#34;:1450224000000,&#34;y&#34;:0.000756598335299976},{&#34;date&#34;:&#34;2015-12-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00643824801210792,&#34;x&#34;:1450310400000,&#34;y&#34;:0.00643824801210792},{&#34;date&#34;:&#34;2015-12-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00495687121937044,&#34;x&#34;:1450396800000,&#34;y&#34;:0.00495687121937044},{&#34;date&#34;:&#34;2015-12-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00887843066546218,&#34;x&#34;:1450656000000,&#34;y&#34;:0.00887843066546218},{&#34;date&#34;:&#34;2015-12-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00236204083051885,&#34;x&#34;:1450742400000,&#34;y&#34;:0.00236204083051885},{&#34;date&#34;:&#34;2015-12-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000914800671941883,&#34;x&#34;:1450828800000,&#34;y&#34;:0.000914800671941883},{&#34;date&#34;:&#34;2015-12-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0026669781862874,&#34;x&#34;:1450915200000,&#34;y&#34;:0.0026669781862874},{&#34;date&#34;:&#34;2015-12-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00239132223435226,&#34;x&#34;:1451260800000,&#34;y&#34;:0.00239132223435226},{&#34;date&#34;:&#34;2015-12-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000306643195085988,&#34;x&#34;:1451347200000,&#34;y&#34;:0.000306643195085988},{&#34;date&#34;:&#34;2015-12-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000523259974480772,&#34;x&#34;:1451433600000,&#34;y&#34;:0.000523259974480772},{&#34;date&#34;:&#34;2015-12-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000265027554290816,&#34;x&#34;:1451520000000,&#34;y&#34;:0.000265027554290816},{&#34;date&#34;:&#34;2016-01-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00435473108535608,&#34;x&#34;:1451865600000,&#34;y&#34;:0.00435473108535608},{&#34;date&#34;:&#34;2016-01-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:4.99137262643245e-05,&#34;x&#34;:1451952000000,&#34;y&#34;:4.99137262643245e-05},{&#34;date&#34;:&#34;2016-01-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:4.8622227364398e-05,&#34;x&#34;:1452038400000,&#34;y&#34;:4.8622227364398e-05},{&#34;date&#34;:&#34;2016-01-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0076402684003439,&#34;x&#34;:1452124800000,&#34;y&#34;:0.0076402684003439},{&#34;date&#34;:&#34;2016-01-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:9.21799517826765e-05,&#34;x&#34;:1452211200000,&#34;y&#34;:9.21799517826765e-05},{&#34;date&#34;:&#34;2016-01-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0016457241875072,&#34;x&#34;:1452470400000,&#34;y&#34;:0.0016457241875072},{&#34;date&#34;:&#34;2016-01-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000877015684916291,&#34;x&#34;:1452556800000,&#34;y&#34;:0.000877015684916291},{&#34;date&#34;:&#34;2016-01-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00943443643821319,&#34;x&#34;:1452643200000,&#34;y&#34;:0.00943443643821319},{&#34;date&#34;:&#34;2016-01-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.009204029031713,&#34;x&#34;:1452729600000,&#34;y&#34;:0.009204029031713},{&#34;date&#34;:&#34;2016-01-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000353175248814303,&#34;x&#34;:1452816000000,&#34;y&#34;:0.000353175248814303},{&#34;date&#34;:&#34;2016-01-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00629909289057516,&#34;x&#34;:1453161600000,&#34;y&#34;:0.00629909289057516},{&#34;date&#34;:&#34;2016-01-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00191760098925365,&#34;x&#34;:1453248000000,&#34;y&#34;:0.00191760098925365},{&#34;date&#34;:&#34;2016-01-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00439061618074424,&#34;x&#34;:1453334400000,&#34;y&#34;:0.00439061618074424},{&#34;date&#34;:&#34;2016-01-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.010413951735192,&#34;x&#34;:1453420800000,&#34;y&#34;:0.010413951735192},{&#34;date&#34;:&#34;2016-01-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00251449135223171,&#34;x&#34;:1453680000000,&#34;y&#34;:0.00251449135223171},{&#34;date&#34;:&#34;2016-01-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0028650925539264,&#34;x&#34;:1453766400000,&#34;y&#34;:0.0028650925539264},{&#34;date&#34;:&#34;2016-01-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00461631957115544,&#34;x&#34;:1453852800000,&#34;y&#34;:0.00461631957115544},{&#34;date&#34;:&#34;2016-01-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00577257442460362,&#34;x&#34;:1453939200000,&#34;y&#34;:0.00577257442460362},{&#34;date&#34;:&#34;2016-01-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00670028948029786,&#34;x&#34;:1454025600000,&#34;y&#34;:0.00670028948029786},{&#34;date&#34;:&#34;2016-02-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00394007287995396,&#34;x&#34;:1454284800000,&#34;y&#34;:0.00394007287995396},{&#34;date&#34;:&#34;2016-02-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00150439975495101,&#34;x&#34;:1454371200000,&#34;y&#34;:0.00150439975495101},{&#34;date&#34;:&#34;2016-02-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00606677272423137,&#34;x&#34;:1454457600000,&#34;y&#34;:0.00606677272423137},{&#34;date&#34;:&#34;2016-02-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00635159670254089,&#34;x&#34;:1454544000000,&#34;y&#34;:0.00635159670254089},{&#34;date&#34;:&#34;2016-02-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00992725209016555,&#34;x&#34;:1454630400000,&#34;y&#34;:0.00992725209016555},{&#34;date&#34;:&#34;2016-02-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00758043240968828,&#34;x&#34;:1454889600000,&#34;y&#34;:0.00758043240968828},{&#34;date&#34;:&#34;2016-02-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00466694271667664,&#34;x&#34;:1454976000000,&#34;y&#34;:0.00466694271667664},{&#34;date&#34;:&#34;2016-02-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00654589752122079,&#34;x&#34;:1455062400000,&#34;y&#34;:0.00654589752122079},{&#34;date&#34;:&#34;2016-02-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00322855895854392,&#34;x&#34;:1455148800000,&#34;y&#34;:0.00322855895854392},{&#34;date&#34;:&#34;2016-02-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00958575719258743,&#34;x&#34;:1455235200000,&#34;y&#34;:0.00958575719258743},{&#34;date&#34;:&#34;2016-02-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00389361272050569,&#34;x&#34;:1455580800000,&#34;y&#34;:0.00389361272050569},{&#34;date&#34;:&#34;2016-02-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000787449185594025,&#34;x&#34;:1455667200000,&#34;y&#34;:0.000787449185594025},{&#34;date&#34;:&#34;2016-02-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000357318694135214,&#34;x&#34;:1455753600000,&#34;y&#34;:0.000357318694135214},{&#34;date&#34;:&#34;2016-02-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000768228836225628,&#34;x&#34;:1455840000000,&#34;y&#34;:0.000768228836225628},{&#34;date&#34;:&#34;2016-02-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000887784879040737,&#34;x&#34;:1456099200000,&#34;y&#34;:0.000887784879040737},{&#34;date&#34;:&#34;2016-02-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00282139674783032,&#34;x&#34;:1456185600000,&#34;y&#34;:0.00282139674783032},{&#34;date&#34;:&#34;2016-02-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0107872487574005,&#34;x&#34;:1456272000000,&#34;y&#34;:0.0107872487574005},{&#34;date&#34;:&#34;2016-02-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00135768760736578,&#34;x&#34;:1456358400000,&#34;y&#34;:0.00135768760736578},{&#34;date&#34;:&#34;2016-02-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00315134214895253,&#34;x&#34;:1456444800000,&#34;y&#34;:0.00315134214895253},{&#34;date&#34;:&#34;2016-02-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00309953861889532,&#34;x&#34;:1456704000000,&#34;y&#34;:0.00309953861889532},{&#34;date&#34;:&#34;2016-03-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00596851063581625,&#34;x&#34;:1456790400000,&#34;y&#34;:0.00596851063581625},{&#34;date&#34;:&#34;2016-03-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.002590271725395,&#34;x&#34;:1456876800000,&#34;y&#34;:0.002590271725395},{&#34;date&#34;:&#34;2016-03-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000895392770388821,&#34;x&#34;:1456963200000,&#34;y&#34;:0.000895392770388821},{&#34;date&#34;:&#34;2016-03-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000695556331745784,&#34;x&#34;:1457049600000,&#34;y&#34;:0.000695556331745784},{&#34;date&#34;:&#34;2016-03-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00419991571814754,&#34;x&#34;:1457308800000,&#34;y&#34;:0.00419991571814754},{&#34;date&#34;:&#34;2016-03-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00218963388792789,&#34;x&#34;:1457395200000,&#34;y&#34;:0.00218963388792789},{&#34;date&#34;:&#34;2016-03-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00173384458370314,&#34;x&#34;:1457481600000,&#34;y&#34;:0.00173384458370314},{&#34;date&#34;:&#34;2016-03-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205103302636883,&#34;x&#34;:1457568000000,&#34;y&#34;:0.00205103302636883},{&#34;date&#34;:&#34;2016-03-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000199092245679135,&#34;x&#34;:1457654400000,&#34;y&#34;:0.000199092245679135},{&#34;date&#34;:&#34;2016-03-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103645659262195,&#34;x&#34;:1457913600000,&#34;y&#34;:0.00103645659262195},{&#34;date&#34;:&#34;2016-03-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00200455073617329,&#34;x&#34;:1458000000000,&#34;y&#34;:0.00200455073617329},{&#34;date&#34;:&#34;2016-03-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000996575530414657,&#34;x&#34;:1458086400000,&#34;y&#34;:0.000996575530414657},{&#34;date&#34;:&#34;2016-03-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00316782341795077,&#34;x&#34;:1458172800000,&#34;y&#34;:0.00316782341795077},{&#34;date&#34;:&#34;2016-03-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000948794057591311,&#34;x&#34;:1458259200000,&#34;y&#34;:0.000948794057591311},{&#34;date&#34;:&#34;2016-03-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00146085276874177,&#34;x&#34;:1458518400000,&#34;y&#34;:0.00146085276874177},{&#34;date&#34;:&#34;2016-03-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000253473046446184,&#34;x&#34;:1458604800000,&#34;y&#34;:0.000253473046446184},{&#34;date&#34;:&#34;2016-03-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000394696354946654,&#34;x&#34;:1458691200000,&#34;y&#34;:0.000394696354946654},{&#34;date&#34;:&#34;2016-03-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00434327783930099,&#34;x&#34;:1458777600000,&#34;y&#34;:0.00434327783930099},{&#34;date&#34;:&#34;2016-03-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00254485496312226,&#34;x&#34;:1459123200000,&#34;y&#34;:0.00254485496312226},{&#34;date&#34;:&#34;2016-03-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00293945789754692,&#34;x&#34;:1459209600000,&#34;y&#34;:0.00293945789754692},{&#34;date&#34;:&#34;2016-03-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00292839427870702,&#34;x&#34;:1459296000000,&#34;y&#34;:0.00292839427870702},{&#34;date&#34;:&#34;2016-03-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000726623417067855,&#34;x&#34;:1459382400000,&#34;y&#34;:0.000726623417067855},{&#34;date&#34;:&#34;2016-04-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00599720890133593,&#34;x&#34;:1459468800000,&#34;y&#34;:0.00599720890133593},{&#34;date&#34;:&#34;2016-04-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00460142348446367,&#34;x&#34;:1459728000000,&#34;y&#34;:0.00460142348446367},{&#34;date&#34;:&#34;2016-04-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00368981274482765,&#34;x&#34;:1459814400000,&#34;y&#34;:0.00368981274482765},{&#34;date&#34;:&#34;2016-04-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00259717641563854,&#34;x&#34;:1459900800000,&#34;y&#34;:0.00259717641563854},{&#34;date&#34;:&#34;2016-04-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00154438576727709,&#34;x&#34;:1459987200000,&#34;y&#34;:0.00154438576727709},{&#34;date&#34;:&#34;2016-04-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00391666299607268,&#34;x&#34;:1460073600000,&#34;y&#34;:0.00391666299607268},{&#34;date&#34;:&#34;2016-04-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00134671830652272,&#34;x&#34;:1460332800000,&#34;y&#34;:0.00134671830652272},{&#34;date&#34;:&#34;2016-04-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00141967032713428,&#34;x&#34;:1460419200000,&#34;y&#34;:0.00141967032713428},{&#34;date&#34;:&#34;2016-04-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00357924958125467,&#34;x&#34;:1460505600000,&#34;y&#34;:0.00357924958125467},{&#34;date&#34;:&#34;2016-04-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000998301985721335,&#34;x&#34;:1460592000000,&#34;y&#34;:0.000998301985721335},{&#34;date&#34;:&#34;2016-04-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205469281685017,&#34;x&#34;:1460678400000,&#34;y&#34;:0.00205469281685017},{&#34;date&#34;:&#34;2016-04-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00301784509946262,&#34;x&#34;:1460937600000,&#34;y&#34;:0.00301784509946262},{&#34;date&#34;:&#34;2016-04-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00718699191439488,&#34;x&#34;:1461024000000,&#34;y&#34;:0.00718699191439488},{&#34;date&#34;:&#34;2016-04-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106201157201088,&#34;x&#34;:1461110400000,&#34;y&#34;:0.00106201157201088},{&#34;date&#34;:&#34;2016-04-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00592184849459788,&#34;x&#34;:1461196800000,&#34;y&#34;:0.00592184849459788},{&#34;date&#34;:&#34;2016-04-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00177747332129503,&#34;x&#34;:1461283200000,&#34;y&#34;:0.00177747332129503},{&#34;date&#34;:&#34;2016-04-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000890597896476351,&#34;x&#34;:1461542400000,&#34;y&#34;:0.000890597896476351},{&#34;date&#34;:&#34;2016-04-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00109709822713204,&#34;x&#34;:1461628800000,&#34;y&#34;:0.00109709822713204},{&#34;date&#34;:&#34;2016-04-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00118245146927174,&#34;x&#34;:1461715200000,&#34;y&#34;:0.00118245146927174},{&#34;date&#34;:&#34;2016-04-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00745966954471345,&#34;x&#34;:1461801600000,&#34;y&#34;:0.00745966954471345},{&#34;date&#34;:&#34;2016-04-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000640248171194056,&#34;x&#34;:1461888000000,&#34;y&#34;:0.000640248171194056},{&#34;date&#34;:&#34;2016-05-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00329397997581203,&#34;x&#34;:1462147200000,&#34;y&#34;:0.00329397997581203},{&#34;date&#34;:&#34;2016-05-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00165645482482795,&#34;x&#34;:1462233600000,&#34;y&#34;:0.00165645482482795},{&#34;date&#34;:&#34;2016-05-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00402444273380057,&#34;x&#34;:1462320000000,&#34;y&#34;:0.00402444273380057},{&#34;date&#34;:&#34;2016-05-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00185719119331311,&#34;x&#34;:1462406400000,&#34;y&#34;:0.00185719119331311},{&#34;date&#34;:&#34;2016-05-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0037362581696451,&#34;x&#34;:1462492800000,&#34;y&#34;:0.0037362581696451},{&#34;date&#34;:&#34;2016-05-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00215024100261312,&#34;x&#34;:1462752000000,&#34;y&#34;:0.00215024100261312},{&#34;date&#34;:&#34;2016-05-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000153526860089999,&#34;x&#34;:1462838400000,&#34;y&#34;:0.000153526860089999},{&#34;date&#34;:&#34;2016-05-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00572802100333414,&#34;x&#34;:1462924800000,&#34;y&#34;:0.00572802100333414},{&#34;date&#34;:&#34;2016-05-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000890313377164864,&#34;x&#34;:1463011200000,&#34;y&#34;:0.000890313377164864},{&#34;date&#34;:&#34;2016-05-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00170487435991207,&#34;x&#34;:1463097600000,&#34;y&#34;:0.00170487435991207},{&#34;date&#34;:&#34;2016-05-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00298076176335253,&#34;x&#34;:1463356800000,&#34;y&#34;:0.00298076176335253},{&#34;date&#34;:&#34;2016-05-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00418253200971225,&#34;x&#34;:1463443200000,&#34;y&#34;:0.00418253200971225},{&#34;date&#34;:&#34;2016-05-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00309503739952598,&#34;x&#34;:1463529600000,&#34;y&#34;:0.00309503739952598},{&#34;date&#34;:&#34;2016-05-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00038459289575377,&#34;x&#34;:1463616000000,&#34;y&#34;:0.00038459289575377},{&#34;date&#34;:&#34;2016-05-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013834793689818,&#34;x&#34;:1463702400000,&#34;y&#34;:0.0013834793689818},{&#34;date&#34;:&#34;2016-05-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208638939394112,&#34;x&#34;:1463961600000,&#34;y&#34;:0.00208638939394112},{&#34;date&#34;:&#34;2016-05-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205138137682025,&#34;x&#34;:1464048000000,&#34;y&#34;:0.00205138137682025},{&#34;date&#34;:&#34;2016-05-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208963123522787,&#34;x&#34;:1464134400000,&#34;y&#34;:0.00208963123522787},{&#34;date&#34;:&#34;2016-05-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00251970710245937,&#34;x&#34;:1464220800000,&#34;y&#34;:0.00251970710245937},{&#34;date&#34;:&#34;2016-05-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00326808685249009,&#34;x&#34;:1464307200000,&#34;y&#34;:0.00326808685249009},{&#34;date&#34;:&#34;2016-05-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0014940017301349,&#34;x&#34;:1464652800000,&#34;y&#34;:0.0014940017301349},{&#34;date&#34;:&#34;2016-06-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406429020421808,&#34;x&#34;:1464739200000,&#34;y&#34;:0.00406429020421808},{&#34;date&#34;:&#34;2016-06-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00315603697795239,&#34;x&#34;:1464825600000,&#34;y&#34;:0.00315603697795239},{&#34;date&#34;:&#34;2016-06-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00225870371101233,&#34;x&#34;:1464912000000,&#34;y&#34;:0.00225870371101233},{&#34;date&#34;:&#34;2016-06-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00174967185587845,&#34;x&#34;:1465171200000,&#34;y&#34;:0.00174967185587845},{&#34;date&#34;:&#34;2016-06-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00126028131051133,&#34;x&#34;:1465257600000,&#34;y&#34;:0.00126028131051133},{&#34;date&#34;:&#34;2016-06-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00171757609224733,&#34;x&#34;:1465344000000,&#34;y&#34;:0.00171757609224733},{&#34;date&#34;:&#34;2016-06-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00417535879558533,&#34;x&#34;:1465430400000,&#34;y&#34;:0.00417535879558533},{&#34;date&#34;:&#34;2016-06-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000213703812772883,&#34;x&#34;:1465516800000,&#34;y&#34;:0.000213703812772883},{&#34;date&#34;:&#34;2016-06-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00050605259871416,&#34;x&#34;:1465776000000,&#34;y&#34;:0.00050605259871416},{&#34;date&#34;:&#34;2016-06-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00456610427707012,&#34;x&#34;:1465862400000,&#34;y&#34;:0.00456610427707012},{&#34;date&#34;:&#34;2016-06-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00420693469354562,&#34;x&#34;:1465948800000,&#34;y&#34;:0.00420693469354562},{&#34;date&#34;:&#34;2016-06-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000952615275277162,&#34;x&#34;:1466035200000,&#34;y&#34;:0.000952615275277162},{&#34;date&#34;:&#34;2016-06-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00545205205103526,&#34;x&#34;:1466121600000,&#34;y&#34;:0.00545205205103526},{&#34;date&#34;:&#34;2016-06-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00264430798564621,&#34;x&#34;:1466380800000,&#34;y&#34;:0.00264430798564621},{&#34;date&#34;:&#34;2016-06-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00162799812729609,&#34;x&#34;:1466467200000,&#34;y&#34;:0.00162799812729609},{&#34;date&#34;:&#34;2016-06-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00459564363340417,&#34;x&#34;:1466553600000,&#34;y&#34;:0.00459564363340417},{&#34;date&#34;:&#34;2016-06-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00126125717424231,&#34;x&#34;:1466640000000,&#34;y&#34;:0.00126125717424231},{&#34;date&#34;:&#34;2016-06-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0218964449621362,&#34;x&#34;:1466726400000,&#34;y&#34;:0.0218964449621362},{&#34;date&#34;:&#34;2016-06-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00521052872799053,&#34;x&#34;:1466985600000,&#34;y&#34;:0.00521052872799053},{&#34;date&#34;:&#34;2016-06-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00316642968791388,&#34;x&#34;:1467072000000,&#34;y&#34;:0.00316642968791388},{&#34;date&#34;:&#34;2016-06-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00620234930872215,&#34;x&#34;:1467158400000,&#34;y&#34;:0.00620234930872215},{&#34;date&#34;:&#34;2016-06-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00408141724618029,&#34;x&#34;:1467244800000,&#34;y&#34;:0.00408141724618029},{&#34;date&#34;:&#34;2016-07-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00160529542707455,&#34;x&#34;:1467331200000,&#34;y&#34;:0.00160529542707455},{&#34;date&#34;:&#34;2016-07-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000420495638959605,&#34;x&#34;:1467676800000,&#34;y&#34;:0.000420495638959605},{&#34;date&#34;:&#34;2016-07-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00569225319450741,&#34;x&#34;:1467763200000,&#34;y&#34;:0.00569225319450741},{&#34;date&#34;:&#34;2016-07-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000777195035299231,&#34;x&#34;:1467849600000,&#34;y&#34;:0.000777195035299231},{&#34;date&#34;:&#34;2016-07-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00773284183498263,&#34;x&#34;:1467936000000,&#34;y&#34;:0.00773284183498263},{&#34;date&#34;:&#34;2016-07-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00225238666352208,&#34;x&#34;:1468195200000,&#34;y&#34;:0.00225238666352208},{&#34;date&#34;:&#34;2016-07-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00202290859257446,&#34;x&#34;:1468281600000,&#34;y&#34;:0.00202290859257446},{&#34;date&#34;:&#34;2016-07-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000245693389992942,&#34;x&#34;:1468368000000,&#34;y&#34;:0.000245693389992942},{&#34;date&#34;:&#34;2016-07-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00152066896876954,&#34;x&#34;:1468454400000,&#34;y&#34;:0.00152066896876954},{&#34;date&#34;:&#34;2016-07-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00078254577677485,&#34;x&#34;:1468540800000,&#34;y&#34;:0.00078254577677485},{&#34;date&#34;:&#34;2016-07-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00020540843385228,&#34;x&#34;:1468800000000,&#34;y&#34;:0.00020540843385228},{&#34;date&#34;:&#34;2016-07-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000109756098568486,&#34;x&#34;:1468886400000,&#34;y&#34;:0.000109756098568486},{&#34;date&#34;:&#34;2016-07-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000459558969443395,&#34;x&#34;:1468972800000,&#34;y&#34;:0.000459558969443395},{&#34;date&#34;:&#34;2016-07-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0025596046571624,&#34;x&#34;:1469059200000,&#34;y&#34;:0.0025596046571624},{&#34;date&#34;:&#34;2016-07-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00159646668902795,&#34;x&#34;:1469145600000,&#34;y&#34;:0.00159646668902795},{&#34;date&#34;:&#34;2016-07-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000752919943341165,&#34;x&#34;:1469404800000,&#34;y&#34;:0.000752919943341165},{&#34;date&#34;:&#34;2016-07-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000342669890539401,&#34;x&#34;:1469491200000,&#34;y&#34;:0.000342669890539401},{&#34;date&#34;:&#34;2016-07-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00160685797048586,&#34;x&#34;:1469577600000,&#34;y&#34;:0.00160685797048586},{&#34;date&#34;:&#34;2016-07-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:1.32340893194056e-05,&#34;x&#34;:1469664000000,&#34;y&#34;:1.32340893194056e-05},{&#34;date&#34;:&#34;2016-07-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0053179992417029,&#34;x&#34;:1469750400000,&#34;y&#34;:0.0053179992417029},{&#34;date&#34;:&#34;2016-08-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00251111239187018,&#34;x&#34;:1470009600000,&#34;y&#34;:0.00251111239187018},{&#34;date&#34;:&#34;2016-08-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00120298550294066,&#34;x&#34;:1470096000000,&#34;y&#34;:0.00120298550294066},{&#34;date&#34;:&#34;2016-08-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00215962728514518,&#34;x&#34;:1470182400000,&#34;y&#34;:0.00215962728514518},{&#34;date&#34;:&#34;2016-08-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000265387922839076,&#34;x&#34;:1470268800000,&#34;y&#34;:0.000265387922839076},{&#34;date&#34;:&#34;2016-08-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00330781285050998,&#34;x&#34;:1470355200000,&#34;y&#34;:0.00330781285050998},{&#34;date&#34;:&#34;2016-08-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00111069887988652,&#34;x&#34;:1470614400000,&#34;y&#34;:0.00111069887988652},{&#34;date&#34;:&#34;2016-08-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205034315014647,&#34;x&#34;:1470700800000,&#34;y&#34;:0.00205034315014647},{&#34;date&#34;:&#34;2016-08-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00268895250401861,&#34;x&#34;:1470787200000,&#34;y&#34;:0.00268895250401861},{&#34;date&#34;:&#34;2016-08-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000442165938877304,&#34;x&#34;:1470873600000,&#34;y&#34;:0.000442165938877304},{&#34;date&#34;:&#34;2016-08-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00125028667314022,&#34;x&#34;:1470960000000,&#34;y&#34;:0.00125028667314022},{&#34;date&#34;:&#34;2016-08-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00276551418131063,&#34;x&#34;:1471219200000,&#34;y&#34;:0.00276551418131063},{&#34;date&#34;:&#34;2016-08-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000826884946007651,&#34;x&#34;:1471305600000,&#34;y&#34;:0.000826884946007651},{&#34;date&#34;:&#34;2016-08-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000134187926020832,&#34;x&#34;:1471392000000,&#34;y&#34;:0.000134187926020832},{&#34;date&#34;:&#34;2016-08-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00232007960670281,&#34;x&#34;:1471478400000,&#34;y&#34;:0.00232007960670281},{&#34;date&#34;:&#34;2016-08-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00296264890988167,&#34;x&#34;:1471564800000,&#34;y&#34;:0.00296264890988167},{&#34;date&#34;:&#34;2016-08-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000720129925662719,&#34;x&#34;:1471824000000,&#34;y&#34;:0.000720129925662719},{&#34;date&#34;:&#34;2016-08-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000507613820433002,&#34;x&#34;:1471910400000,&#34;y&#34;:0.000507613820433002},{&#34;date&#34;:&#34;2016-08-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00217257880341865,&#34;x&#34;:1471996800000,&#34;y&#34;:0.00217257880341865},{&#34;date&#34;:&#34;2016-08-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000613887044415466,&#34;x&#34;:1472083200000,&#34;y&#34;:0.000613887044415466},{&#34;date&#34;:&#34;2016-08-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178061008027771,&#34;x&#34;:1472169600000,&#34;y&#34;:0.00178061008027771},{&#34;date&#34;:&#34;2016-08-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00116055813386945,&#34;x&#34;:1472428800000,&#34;y&#34;:0.00116055813386945},{&#34;date&#34;:&#34;2016-08-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00292582593184027,&#34;x&#34;:1472515200000,&#34;y&#34;:0.00292582593184027},{&#34;date&#34;:&#34;2016-08-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00197813491112788,&#34;x&#34;:1472601600000,&#34;y&#34;:0.00197813491112788},{&#34;date&#34;:&#34;2016-09-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00104498304856213,&#34;x&#34;:1472688000000,&#34;y&#34;:0.00104498304856213},{&#34;date&#34;:&#34;2016-09-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00263560444221595,&#34;x&#34;:1472774400000,&#34;y&#34;:0.00263560444221595},{&#34;date&#34;:&#34;2016-09-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000738604008634933,&#34;x&#34;:1473120000000,&#34;y&#34;:0.000738604008634933},{&#34;date&#34;:&#34;2016-09-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000751260854430958,&#34;x&#34;:1473206400000,&#34;y&#34;:0.000751260854430958},{&#34;date&#34;:&#34;2016-09-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136297845744431,&#34;x&#34;:1473292800000,&#34;y&#34;:0.00136297845744431},{&#34;date&#34;:&#34;2016-09-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0171051525717296,&#34;x&#34;:1473379200000,&#34;y&#34;:0.0171051525717296},{&#34;date&#34;:&#34;2016-09-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00876376658570854,&#34;x&#34;:1473638400000,&#34;y&#34;:0.00876376658570854},{&#34;date&#34;:&#34;2016-09-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00740929065252387,&#34;x&#34;:1473724800000,&#34;y&#34;:0.00740929065252387},{&#34;date&#34;:&#34;2016-09-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000285211158969392,&#34;x&#34;:1473811200000,&#34;y&#34;:0.000285211158969392},{&#34;date&#34;:&#34;2016-09-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0041449808882293,&#34;x&#34;:1473897600000,&#34;y&#34;:0.0041449808882293},{&#34;date&#34;:&#34;2016-09-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00137146529713595,&#34;x&#34;:1473984000000,&#34;y&#34;:0.00137146529713595},{&#34;date&#34;:&#34;2016-09-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00151473219216688,&#34;x&#34;:1474243200000,&#34;y&#34;:0.00151473219216688},{&#34;date&#34;:&#34;2016-09-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00279413362661776,&#34;x&#34;:1474329600000,&#34;y&#34;:0.00279413362661776},{&#34;date&#34;:&#34;2016-09-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0041009394467729,&#34;x&#34;:1474416000000,&#34;y&#34;:0.0041009394467729},{&#34;date&#34;:&#34;2016-09-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000115329292514692,&#34;x&#34;:1474502400000,&#34;y&#34;:0.000115329292514692},{&#34;date&#34;:&#34;2016-09-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00122090649588156,&#34;x&#34;:1474588800000,&#34;y&#34;:0.00122090649588156},{&#34;date&#34;:&#34;2016-09-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00314035666753001,&#34;x&#34;:1474848000000,&#34;y&#34;:0.00314035666753001},{&#34;date&#34;:&#34;2016-09-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00317780922371701,&#34;x&#34;:1474934400000,&#34;y&#34;:0.00317780922371701},{&#34;date&#34;:&#34;2016-09-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00482269019241134,&#34;x&#34;:1475020800000,&#34;y&#34;:0.00482269019241134},{&#34;date&#34;:&#34;2016-09-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000353841625704364,&#34;x&#34;:1475107200000,&#34;y&#34;:0.000353841625704364},{&#34;date&#34;:&#34;2016-09-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00314513811300813,&#34;x&#34;:1475193600000,&#34;y&#34;:0.00314513811300813},{&#34;date&#34;:&#34;2016-10-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00135476344691113,&#34;x&#34;:1475452800000,&#34;y&#34;:0.00135476344691113},{&#34;date&#34;:&#34;2016-10-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00550845521949076,&#34;x&#34;:1475539200000,&#34;y&#34;:0.00550845521949076},{&#34;date&#34;:&#34;2016-10-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00354310101259846,&#34;x&#34;:1475625600000,&#34;y&#34;:0.00354310101259846},{&#34;date&#34;:&#34;2016-10-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00113420274953901,&#34;x&#34;:1475712000000,&#34;y&#34;:0.00113420274953901},{&#34;date&#34;:&#34;2016-10-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000533430818523165,&#34;x&#34;:1475798400000,&#34;y&#34;:0.000533430818523165},{&#34;date&#34;:&#34;2016-10-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000994234577704675,&#34;x&#34;:1476057600000,&#34;y&#34;:0.000994234577704675},{&#34;date&#34;:&#34;2016-10-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00544168235562282,&#34;x&#34;:1476144000000,&#34;y&#34;:0.00544168235562282},{&#34;date&#34;:&#34;2016-10-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000794636237756211,&#34;x&#34;:1476230400000,&#34;y&#34;:0.000794636237756211},{&#34;date&#34;:&#34;2016-10-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00141791000631537,&#34;x&#34;:1476316800000,&#34;y&#34;:0.00141791000631537},{&#34;date&#34;:&#34;2016-10-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00167771170140043,&#34;x&#34;:1476403200000,&#34;y&#34;:0.00167771170140043},{&#34;date&#34;:&#34;2016-10-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00128606775744151,&#34;x&#34;:1476662400000,&#34;y&#34;:0.00128606775744151},{&#34;date&#34;:&#34;2016-10-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000696321255851035,&#34;x&#34;:1476748800000,&#34;y&#34;:0.000696321255851035},{&#34;date&#34;:&#34;2016-10-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106988912544378,&#34;x&#34;:1476835200000,&#34;y&#34;:0.00106988912544378},{&#34;date&#34;:&#34;2016-10-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00195601674382502,&#34;x&#34;:1476921600000,&#34;y&#34;:0.00195601674382502},{&#34;date&#34;:&#34;2016-10-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00151595275158728,&#34;x&#34;:1477008000000,&#34;y&#34;:0.00151595275158728},{&#34;date&#34;:&#34;2016-10-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000254057182805282,&#34;x&#34;:1477267200000,&#34;y&#34;:0.000254057182805282},{&#34;date&#34;:&#34;2016-10-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00269233868707742,&#34;x&#34;:1477353600000,&#34;y&#34;:0.00269233868707742},{&#34;date&#34;:&#34;2016-10-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00250671120842745,&#34;x&#34;:1477440000000,&#34;y&#34;:0.00250671120842745},{&#34;date&#34;:&#34;2016-10-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00295175598622102,&#34;x&#34;:1477526400000,&#34;y&#34;:0.00295175598622102},{&#34;date&#34;:&#34;2016-10-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00292179672571274,&#34;x&#34;:1477612800000,&#34;y&#34;:0.00292179672571274},{&#34;date&#34;:&#34;2016-10-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0021935037024321,&#34;x&#34;:1477872000000,&#34;y&#34;:0.0021935037024321},{&#34;date&#34;:&#34;2016-11-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00434584529735663,&#34;x&#34;:1477958400000,&#34;y&#34;:0.00434584529735663},{&#34;date&#34;:&#34;2016-11-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00188345490020019,&#34;x&#34;:1478044800000,&#34;y&#34;:0.00188345490020019},{&#34;date&#34;:&#34;2016-11-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00288298366891027,&#34;x&#34;:1478131200000,&#34;y&#34;:0.00288298366891027},{&#34;date&#34;:&#34;2016-11-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00432576156597594,&#34;x&#34;:1478217600000,&#34;y&#34;:0.00432576156597594},{&#34;date&#34;:&#34;2016-11-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00750457832153818,&#34;x&#34;:1478476800000,&#34;y&#34;:0.00750457832153818},{&#34;date&#34;:&#34;2016-11-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00143570899145871,&#34;x&#34;:1478563200000,&#34;y&#34;:0.00143570899145871},{&#34;date&#34;:&#34;2016-11-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00872335368942581,&#34;x&#34;:1478649600000,&#34;y&#34;:0.00872335368942581},{&#34;date&#34;:&#34;2016-11-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130036512165486,&#34;x&#34;:1478736000000,&#34;y&#34;:0.00130036512165486},{&#34;date&#34;:&#34;2016-11-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000188960934723348,&#34;x&#34;:1478822400000,&#34;y&#34;:0.000188960934723348},{&#34;date&#34;:&#34;2016-11-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00374913684516115,&#34;x&#34;:1479081600000,&#34;y&#34;:0.00374913684516115},{&#34;date&#34;:&#34;2016-11-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00218357763184909,&#34;x&#34;:1479168000000,&#34;y&#34;:0.00218357763184909},{&#34;date&#34;:&#34;2016-11-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00238196498526625,&#34;x&#34;:1479254400000,&#34;y&#34;:0.00238196498526625},{&#34;date&#34;:&#34;2016-11-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000938810312724679,&#34;x&#34;:1479340800000,&#34;y&#34;:0.000938810312724679},{&#34;date&#34;:&#34;2016-11-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130263392187033,&#34;x&#34;:1479427200000,&#34;y&#34;:0.00130263392187033},{&#34;date&#34;:&#34;2016-11-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00114916938760177,&#34;x&#34;:1479686400000,&#34;y&#34;:0.00114916938760177},{&#34;date&#34;:&#34;2016-11-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000501342327058653,&#34;x&#34;:1479772800000,&#34;y&#34;:0.000501342327058653},{&#34;date&#34;:&#34;2016-11-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00190004576015157,&#34;x&#34;:1479859200000,&#34;y&#34;:0.00190004576015157},{&#34;date&#34;:&#34;2016-11-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0012117898747769,&#34;x&#34;:1480032000000,&#34;y&#34;:0.0012117898747769},{&#34;date&#34;:&#34;2016-11-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00142795890448438,&#34;x&#34;:1480291200000,&#34;y&#34;:0.00142795890448438},{&#34;date&#34;:&#34;2016-11-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00268304157491472,&#34;x&#34;:1480377600000,&#34;y&#34;:0.00268304157491472},{&#34;date&#34;:&#34;2016-11-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00148940303325588,&#34;x&#34;:1480464000000,&#34;y&#34;:0.00148940303325588},{&#34;date&#34;:&#34;2016-12-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000437561464797262,&#34;x&#34;:1480550400000,&#34;y&#34;:0.000437561464797262},{&#34;date&#34;:&#34;2016-12-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00181584516009029,&#34;x&#34;:1480636800000,&#34;y&#34;:0.00181584516009029},{&#34;date&#34;:&#34;2016-12-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00350600101325258,&#34;x&#34;:1480896000000,&#34;y&#34;:0.00350600101325258},{&#34;date&#34;:&#34;2016-12-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000751234918225076,&#34;x&#34;:1480982400000,&#34;y&#34;:0.000751234918225076},{&#34;date&#34;:&#34;2016-12-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00288827459285574,&#34;x&#34;:1481068800000,&#34;y&#34;:0.00288827459285574},{&#34;date&#34;:&#34;2016-12-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000465255667712638,&#34;x&#34;:1481155200000,&#34;y&#34;:0.000465255667712638},{&#34;date&#34;:&#34;2016-12-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0041919487983297,&#34;x&#34;:1481241600000,&#34;y&#34;:0.0041919487983297},{&#34;date&#34;:&#34;2016-12-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00207827225774742,&#34;x&#34;:1481500800000,&#34;y&#34;:0.00207827225774742},{&#34;date&#34;:&#34;2016-12-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00397264757248993,&#34;x&#34;:1481587200000,&#34;y&#34;:0.00397264757248993},{&#34;date&#34;:&#34;2016-12-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0022687501699622,&#34;x&#34;:1481673600000,&#34;y&#34;:0.0022687501699622},{&#34;date&#34;:&#34;2016-12-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00397321228206072,&#34;x&#34;:1481760000000,&#34;y&#34;:0.00397321228206072},{&#34;date&#34;:&#34;2016-12-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106538653048893,&#34;x&#34;:1481846400000,&#34;y&#34;:0.00106538653048893},{&#34;date&#34;:&#34;2016-12-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00352588010170244,&#34;x&#34;:1482105600000,&#34;y&#34;:0.00352588010170244},{&#34;date&#34;:&#34;2016-12-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00167888204009601,&#34;x&#34;:1482192000000,&#34;y&#34;:0.00167888204009601},{&#34;date&#34;:&#34;2016-12-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00175087061937348,&#34;x&#34;:1482278400000,&#34;y&#34;:0.00175087061937348},{&#34;date&#34;:&#34;2016-12-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00185851169646374,&#34;x&#34;:1482364800000,&#34;y&#34;:0.00185851169646374},{&#34;date&#34;:&#34;2016-12-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00175558003853289,&#34;x&#34;:1482451200000,&#34;y&#34;:0.00175558003853289},{&#34;date&#34;:&#34;2016-12-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00195891830748184,&#34;x&#34;:1482796800000,&#34;y&#34;:0.00195891830748184},{&#34;date&#34;:&#34;2016-12-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00396659321091997,&#34;x&#34;:1482883200000,&#34;y&#34;:0.00396659321091997},{&#34;date&#34;:&#34;2016-12-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000725011466779303,&#34;x&#34;:1482969600000,&#34;y&#34;:0.000725011466779303},{&#34;date&#34;:&#34;2016-12-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00176939826781894,&#34;x&#34;:1483056000000,&#34;y&#34;:0.00176939826781894},{&#34;date&#34;:&#34;2017-01-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00220068192788672,&#34;x&#34;:1483401600000,&#34;y&#34;:0.00220068192788672},{&#34;date&#34;:&#34;2017-01-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000642315768222612,&#34;x&#34;:1483488000000,&#34;y&#34;:0.000642315768222612},{&#34;date&#34;:&#34;2017-01-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00561006432182169,&#34;x&#34;:1483574400000,&#34;y&#34;:0.00561006432182169},{&#34;date&#34;:&#34;2017-01-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00157459366482963,&#34;x&#34;:1483660800000,&#34;y&#34;:0.00157459366482963},{&#34;date&#34;:&#34;2017-01-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00192663683645288,&#34;x&#34;:1483920000000,&#34;y&#34;:0.00192663683645288},{&#34;date&#34;:&#34;2017-01-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000578662280016658,&#34;x&#34;:1484006400000,&#34;y&#34;:0.000578662280016658},{&#34;date&#34;:&#34;2017-01-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000800513789868231,&#34;x&#34;:1484092800000,&#34;y&#34;:0.000800513789868231},{&#34;date&#34;:&#34;2017-01-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000500465543224869,&#34;x&#34;:1484179200000,&#34;y&#34;:0.000500465543224869},{&#34;date&#34;:&#34;2017-01-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103834851978848,&#34;x&#34;:1484265600000,&#34;y&#34;:0.00103834851978848},{&#34;date&#34;:&#34;2017-01-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00383031801301423,&#34;x&#34;:1484611200000,&#34;y&#34;:0.00383031801301423},{&#34;date&#34;:&#34;2017-01-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00286167031512328,&#34;x&#34;:1484697600000,&#34;y&#34;:0.00286167031512328},{&#34;date&#34;:&#34;2017-01-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00328813540835988,&#34;x&#34;:1484784000000,&#34;y&#34;:0.00328813540835988},{&#34;date&#34;:&#34;2017-01-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000876948327263606,&#34;x&#34;:1484870400000,&#34;y&#34;:0.000876948327263606},{&#34;date&#34;:&#34;2017-01-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156888230108249,&#34;x&#34;:1485129600000,&#34;y&#34;:0.00156888230108249},{&#34;date&#34;:&#34;2017-01-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0032166393991214,&#34;x&#34;:1485216000000,&#34;y&#34;:0.0032166393991214},{&#34;date&#34;:&#34;2017-01-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00217879048330384,&#34;x&#34;:1485302400000,&#34;y&#34;:0.00217879048330384},{&#34;date&#34;:&#34;2017-01-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208204732072695,&#34;x&#34;:1485388800000,&#34;y&#34;:0.00208204732072695},{&#34;date&#34;:&#34;2017-01-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000599960726891122,&#34;x&#34;:1485475200000,&#34;y&#34;:0.000599960726891122},{&#34;date&#34;:&#34;2017-01-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000950789978650351,&#34;x&#34;:1485734400000,&#34;y&#34;:0.000950789978650351},{&#34;date&#34;:&#34;2017-01-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000507809258160204,&#34;x&#34;:1485820800000,&#34;y&#34;:0.000507809258160204},{&#34;date&#34;:&#34;2017-02-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00110790893937926,&#34;x&#34;:1485907200000,&#34;y&#34;:0.00110790893937926},{&#34;date&#34;:&#34;2017-02-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00220632295079328,&#34;x&#34;:1485993600000,&#34;y&#34;:0.00220632295079328},{&#34;date&#34;:&#34;2017-02-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00190173837291212,&#34;x&#34;:1486080000000,&#34;y&#34;:0.00190173837291212},{&#34;date&#34;:&#34;2017-02-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000283413885439519,&#34;x&#34;:1486339200000,&#34;y&#34;:0.000283413885439519},{&#34;date&#34;:&#34;2017-02-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000110672502792694,&#34;x&#34;:1486425600000,&#34;y&#34;:0.000110672502792694},{&#34;date&#34;:&#34;2017-02-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00105880448341185,&#34;x&#34;:1486512000000,&#34;y&#34;:0.00105880448341185},{&#34;date&#34;:&#34;2017-02-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00166694677845329,&#34;x&#34;:1486598400000,&#34;y&#34;:0.00166694677845329},{&#34;date&#34;:&#34;2017-02-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000220772382538859,&#34;x&#34;:1486684800000,&#34;y&#34;:0.000220772382538859},{&#34;date&#34;:&#34;2017-02-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000249209801303179,&#34;x&#34;:1486944000000,&#34;y&#34;:0.000249209801303179},{&#34;date&#34;:&#34;2017-02-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00431022211578958,&#34;x&#34;:1487030400000,&#34;y&#34;:0.00431022211578958},{&#34;date&#34;:&#34;2017-02-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103493868767278,&#34;x&#34;:1487116800000,&#34;y&#34;:0.00103493868767278},{&#34;date&#34;:&#34;2017-02-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00205249723613406,&#34;x&#34;:1487203200000,&#34;y&#34;:0.00205249723613406},{&#34;date&#34;:&#34;2017-02-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00350548252229491,&#34;x&#34;:1487289600000,&#34;y&#34;:0.00350548252229491},{&#34;date&#34;:&#34;2017-02-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00119927435630245,&#34;x&#34;:1487635200000,&#34;y&#34;:0.00119927435630245},{&#34;date&#34;:&#34;2017-02-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00130648950199573,&#34;x&#34;:1487721600000,&#34;y&#34;:0.00130648950199573},{&#34;date&#34;:&#34;2017-02-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000390169797896131,&#34;x&#34;:1487808000000,&#34;y&#34;:0.000390169797896131},{&#34;date&#34;:&#34;2017-02-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00299172731009862,&#34;x&#34;:1487894400000,&#34;y&#34;:0.00299172731009862},{&#34;date&#34;:&#34;2017-02-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00296701477459117,&#34;x&#34;:1488153600000,&#34;y&#34;:0.00296701477459117},{&#34;date&#34;:&#34;2017-02-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00207270660961641,&#34;x&#34;:1488240000000,&#34;y&#34;:0.00207270660961641},{&#34;date&#34;:&#34;2017-03-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00365719805722696,&#34;x&#34;:1488326400000,&#34;y&#34;:0.00365719805722696},{&#34;date&#34;:&#34;2017-03-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00223678026754732,&#34;x&#34;:1488412800000,&#34;y&#34;:0.00223678026754732},{&#34;date&#34;:&#34;2017-03-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00435131557483537,&#34;x&#34;:1488499200000,&#34;y&#34;:0.00435131557483537},{&#34;date&#34;:&#34;2017-03-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00028169879948786,&#34;x&#34;:1488758400000,&#34;y&#34;:0.00028169879948786},{&#34;date&#34;:&#34;2017-03-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00113239477279367,&#34;x&#34;:1488844800000,&#34;y&#34;:0.00113239477279367},{&#34;date&#34;:&#34;2017-03-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00086881789580495,&#34;x&#34;:1488931200000,&#34;y&#34;:0.00086881789580495},{&#34;date&#34;:&#34;2017-03-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000789334630958708,&#34;x&#34;:1489017600000,&#34;y&#34;:0.000789334630958708},{&#34;date&#34;:&#34;2017-03-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00118177999223406,&#34;x&#34;:1489104000000,&#34;y&#34;:0.00118177999223406},{&#34;date&#34;:&#34;2017-03-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000374107274594283,&#34;x&#34;:1489363200000,&#34;y&#34;:0.000374107274594283},{&#34;date&#34;:&#34;2017-03-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000978798772025025,&#34;x&#34;:1489449600000,&#34;y&#34;:0.000978798772025025},{&#34;date&#34;:&#34;2017-03-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00267634984239615,&#34;x&#34;:1489536000000,&#34;y&#34;:0.00267634984239615},{&#34;date&#34;:&#34;2017-03-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00548569083226419,&#34;x&#34;:1489622400000,&#34;y&#34;:0.00548569083226419},{&#34;date&#34;:&#34;2017-03-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000924198492296146,&#34;x&#34;:1489708800000,&#34;y&#34;:0.000924198492296146},{&#34;date&#34;:&#34;2017-03-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00049963095661782,&#34;x&#34;:1489968000000,&#34;y&#34;:0.00049963095661782},{&#34;date&#34;:&#34;2017-03-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00733028421635421,&#34;x&#34;:1490054400000,&#34;y&#34;:0.00733028421635421},{&#34;date&#34;:&#34;2017-03-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00131465365401076,&#34;x&#34;:1490140800000,&#34;y&#34;:0.00131465365401076},{&#34;date&#34;:&#34;2017-03-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00131953505018048,&#34;x&#34;:1490227200000,&#34;y&#34;:0.00131953505018048},{&#34;date&#34;:&#34;2017-03-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00138218647588729,&#34;x&#34;:1490313600000,&#34;y&#34;:0.00138218647588729},{&#34;date&#34;:&#34;2017-03-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00191462925483187,&#34;x&#34;:1490572800000,&#34;y&#34;:0.00191462925483187},{&#34;date&#34;:&#34;2017-03-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00273949165867805,&#34;x&#34;:1490659200000,&#34;y&#34;:0.00273949165867805},{&#34;date&#34;:&#34;2017-03-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000822054788003299,&#34;x&#34;:1490745600000,&#34;y&#34;:0.000822054788003299},{&#34;date&#34;:&#34;2017-03-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00322639817543668,&#34;x&#34;:1490832000000,&#34;y&#34;:0.00322639817543668},{&#34;date&#34;:&#34;2017-03-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00068188422327266,&#34;x&#34;:1490918400000,&#34;y&#34;:0.00068188422327266},{&#34;date&#34;:&#34;2017-04-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000544672589532932,&#34;x&#34;:1491177600000,&#34;y&#34;:0.000544672589532932},{&#34;date&#34;:&#34;2017-04-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000854233252933708,&#34;x&#34;:1491264000000,&#34;y&#34;:0.000854233252933708},{&#34;date&#34;:&#34;2017-04-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00100477045596371,&#34;x&#34;:1491350400000,&#34;y&#34;:0.00100477045596371},{&#34;date&#34;:&#34;2017-04-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00215866438382077,&#34;x&#34;:1491436800000,&#34;y&#34;:0.00215866438382077},{&#34;date&#34;:&#34;2017-04-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000865894966884134,&#34;x&#34;:1491523200000,&#34;y&#34;:0.000865894966884134},{&#34;date&#34;:&#34;2017-04-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00118363053690387,&#34;x&#34;:1491782400000,&#34;y&#34;:0.00118363053690387},{&#34;date&#34;:&#34;2017-04-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000494117441836051,&#34;x&#34;:1491868800000,&#34;y&#34;:0.000494117441836051},{&#34;date&#34;:&#34;2017-04-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00380490458823101,&#34;x&#34;:1491955200000,&#34;y&#34;:0.00380490458823101},{&#34;date&#34;:&#34;2017-04-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000117661808128848,&#34;x&#34;:1492041600000,&#34;y&#34;:0.000117661808128848},{&#34;date&#34;:&#34;2017-04-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0049480019472521,&#34;x&#34;:1492387200000,&#34;y&#34;:0.0049480019472521},{&#34;date&#34;:&#34;2017-04-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00106821779106287,&#34;x&#34;:1492473600000,&#34;y&#34;:0.00106821779106287},{&#34;date&#34;:&#34;2017-04-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000438994283468146,&#34;x&#34;:1492560000000,&#34;y&#34;:0.000438994283468146},{&#34;date&#34;:&#34;2017-04-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00253151193669525,&#34;x&#34;:1492646400000,&#34;y&#34;:0.00253151193669525},{&#34;date&#34;:&#34;2017-04-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00166868348772587,&#34;x&#34;:1492732800000,&#34;y&#34;:0.00166868348772587},{&#34;date&#34;:&#34;2017-04-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:9.66476184357384e-06,&#34;x&#34;:1492992000000,&#34;y&#34;:9.66476184357384e-06},{&#34;date&#34;:&#34;2017-04-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000600998687300889,&#34;x&#34;:1493078400000,&#34;y&#34;:0.000600998687300889},{&#34;date&#34;:&#34;2017-04-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000771834275634839,&#34;x&#34;:1493164800000,&#34;y&#34;:0.000771834275634839},{&#34;date&#34;:&#34;2017-04-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0032970150530321,&#34;x&#34;:1493251200000,&#34;y&#34;:0.0032970150530321},{&#34;date&#34;:&#34;2017-04-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000474000982886702,&#34;x&#34;:1493337600000,&#34;y&#34;:0.000474000982886702},{&#34;date&#34;:&#34;2017-05-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00209574437391007,&#34;x&#34;:1493596800000,&#34;y&#34;:0.00209574437391007},{&#34;date&#34;:&#34;2017-05-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00316517891181679,&#34;x&#34;:1493683200000,&#34;y&#34;:0.00316517891181679},{&#34;date&#34;:&#34;2017-05-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000206302215708535,&#34;x&#34;:1493769600000,&#34;y&#34;:0.000206302215708535},{&#34;date&#34;:&#34;2017-05-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00210164345440232,&#34;x&#34;:1493856000000,&#34;y&#34;:0.00210164345440232},{&#34;date&#34;:&#34;2017-05-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00154657108301496,&#34;x&#34;:1493942400000,&#34;y&#34;:0.00154657108301496},{&#34;date&#34;:&#34;2017-05-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0017768859329387,&#34;x&#34;:1494201600000,&#34;y&#34;:0.0017768859329387},{&#34;date&#34;:&#34;2017-05-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000473959293859324,&#34;x&#34;:1494288000000,&#34;y&#34;:0.000473959293859324},{&#34;date&#34;:&#34;2017-05-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000750032628056844,&#34;x&#34;:1494374400000,&#34;y&#34;:0.000750032628056844},{&#34;date&#34;:&#34;2017-05-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00156257968148124,&#34;x&#34;:1494460800000,&#34;y&#34;:0.00156257968148124},{&#34;date&#34;:&#34;2017-05-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00211340142295421,&#34;x&#34;:1494547200000,&#34;y&#34;:0.00211340142295421},{&#34;date&#34;:&#34;2017-05-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000190435030948505,&#34;x&#34;:1494806400000,&#34;y&#34;:0.000190435030948505},{&#34;date&#34;:&#34;2017-05-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00220134627792209,&#34;x&#34;:1494892800000,&#34;y&#34;:0.00220134627792209},{&#34;date&#34;:&#34;2017-05-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00920513582953843,&#34;x&#34;:1494979200000,&#34;y&#34;:0.00920513582953843},{&#34;date&#34;:&#34;2017-05-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406630081956308,&#34;x&#34;:1495065600000,&#34;y&#34;:0.00406630081956308},{&#34;date&#34;:&#34;2017-05-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:6.73730041831069e-05,&#34;x&#34;:1495152000000,&#34;y&#34;:6.73730041831069e-05},{&#34;date&#34;:&#34;2017-05-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00395531164381844,&#34;x&#34;:1495411200000,&#34;y&#34;:0.00395531164381844},{&#34;date&#34;:&#34;2017-05-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00194058527039616,&#34;x&#34;:1495497600000,&#34;y&#34;:0.00194058527039616},{&#34;date&#34;:&#34;2017-05-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00164017589020188,&#34;x&#34;:1495584000000,&#34;y&#34;:0.00164017589020188},{&#34;date&#34;:&#34;2017-05-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00473730155666312,&#34;x&#34;:1495670400000,&#34;y&#34;:0.00473730155666312},{&#34;date&#34;:&#34;2017-05-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00184065102288655,&#34;x&#34;:1495756800000,&#34;y&#34;:0.00184065102288655},{&#34;date&#34;:&#34;2017-05-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00250601739829797,&#34;x&#34;:1496102400000,&#34;y&#34;:0.00250601739829797},{&#34;date&#34;:&#34;2017-05-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000531071324415682,&#34;x&#34;:1496188800000,&#34;y&#34;:0.000531071324415682},{&#34;date&#34;:&#34;2017-06-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00315499368568156,&#34;x&#34;:1496275200000,&#34;y&#34;:0.00315499368568156},{&#34;date&#34;:&#34;2017-06-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00149827419496544,&#34;x&#34;:1496361600000,&#34;y&#34;:0.00149827419496544},{&#34;date&#34;:&#34;2017-06-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000224562299631777,&#34;x&#34;:1496620800000,&#34;y&#34;:0.000224562299631777},{&#34;date&#34;:&#34;2017-06-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00490647578662081,&#34;x&#34;:1496707200000,&#34;y&#34;:0.00490647578662081},{&#34;date&#34;:&#34;2017-06-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00181778717567682,&#34;x&#34;:1496793600000,&#34;y&#34;:0.00181778717567682},{&#34;date&#34;:&#34;2017-06-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00150359110204811,&#34;x&#34;:1496880000000,&#34;y&#34;:0.00150359110204811},{&#34;date&#34;:&#34;2017-06-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000589126233841853,&#34;x&#34;:1496966400000,&#34;y&#34;:0.000589126233841853},{&#34;date&#34;:&#34;2017-06-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000785267452530611,&#34;x&#34;:1497225600000,&#34;y&#34;:0.000785267452530611},{&#34;date&#34;:&#34;2017-06-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00032663222694752,&#34;x&#34;:1497312000000,&#34;y&#34;:0.00032663222694752},{&#34;date&#34;:&#34;2017-06-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00193962443631849,&#34;x&#34;:1497398400000,&#34;y&#34;:0.00193962443631849},{&#34;date&#34;:&#34;2017-06-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178480116194402,&#34;x&#34;:1497484800000,&#34;y&#34;:0.00178480116194402},{&#34;date&#34;:&#34;2017-06-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00227838045911216,&#34;x&#34;:1497571200000,&#34;y&#34;:0.00227838045911216},{&#34;date&#34;:&#34;2017-06-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00281397691092402,&#34;x&#34;:1497830400000,&#34;y&#34;:0.00281397691092402},{&#34;date&#34;:&#34;2017-06-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00276198862616263,&#34;x&#34;:1497916800000,&#34;y&#34;:0.00276198862616263},{&#34;date&#34;:&#34;2017-06-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000192884361855274,&#34;x&#34;:1498003200000,&#34;y&#34;:0.000192884361855274},{&#34;date&#34;:&#34;2017-06-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000259720774694152,&#34;x&#34;:1498089600000,&#34;y&#34;:0.000259720774694152},{&#34;date&#34;:&#34;2017-06-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000557558234526353,&#34;x&#34;:1498176000000,&#34;y&#34;:0.000557558234526353},{&#34;date&#34;:&#34;2017-06-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000126300272981984,&#34;x&#34;:1498435200000,&#34;y&#34;:0.000126300272981984},{&#34;date&#34;:&#34;2017-06-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00561618579486439,&#34;x&#34;:1498521600000,&#34;y&#34;:0.00561618579486439},{&#34;date&#34;:&#34;2017-06-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0020236818136823,&#34;x&#34;:1498608000000,&#34;y&#34;:0.0020236818136823},{&#34;date&#34;:&#34;2017-06-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00479603402518207,&#34;x&#34;:1498694400000,&#34;y&#34;:0.00479603402518207},{&#34;date&#34;:&#34;2017-06-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0039170890474173,&#34;x&#34;:1498780800000,&#34;y&#34;:0.0039170890474173},{&#34;date&#34;:&#34;2017-07-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00330775801804971,&#34;x&#34;:1499040000000,&#34;y&#34;:0.00330775801804971},{&#34;date&#34;:&#34;2017-07-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000923877973580159,&#34;x&#34;:1499212800000,&#34;y&#34;:0.000923877973580159},{&#34;date&#34;:&#34;2017-07-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00455581805067294,&#34;x&#34;:1499299200000,&#34;y&#34;:0.00455581805067294},{&#34;date&#34;:&#34;2017-07-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00548688562762336,&#34;x&#34;:1499385600000,&#34;y&#34;:0.00548688562762336},{&#34;date&#34;:&#34;2017-07-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000429896269046332,&#34;x&#34;:1499644800000,&#34;y&#34;:0.000429896269046332},{&#34;date&#34;:&#34;2017-07-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00160472256570825,&#34;x&#34;:1499731200000,&#34;y&#34;:0.00160472256570825},{&#34;date&#34;:&#34;2017-07-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00036455733410835,&#34;x&#34;:1499817600000,&#34;y&#34;:0.00036455733410835},{&#34;date&#34;:&#34;2017-07-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00122078887115348,&#34;x&#34;:1499904000000,&#34;y&#34;:0.00122078887115348},{&#34;date&#34;:&#34;2017-07-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00027744181369957,&#34;x&#34;:1499990400000,&#34;y&#34;:0.00027744181369957},{&#34;date&#34;:&#34;2017-07-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000130179465291443,&#34;x&#34;:1500249600000,&#34;y&#34;:0.000130179465291443},{&#34;date&#34;:&#34;2017-07-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000304545761030702,&#34;x&#34;:1500336000000,&#34;y&#34;:0.000304545761030702},{&#34;date&#34;:&#34;2017-07-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000460089510473261,&#34;x&#34;:1500422400000,&#34;y&#34;:0.000460089510473261},{&#34;date&#34;:&#34;2017-07-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000350007543751075,&#34;x&#34;:1500508800000,&#34;y&#34;:0.000350007543751075},{&#34;date&#34;:&#34;2017-07-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00110942433359531,&#34;x&#34;:1500595200000,&#34;y&#34;:0.00110942433359531},{&#34;date&#34;:&#34;2017-07-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000574869765522386,&#34;x&#34;:1500854400000,&#34;y&#34;:0.000574869765522386},{&#34;date&#34;:&#34;2017-07-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00222648739942126,&#34;x&#34;:1500940800000,&#34;y&#34;:0.00222648739942126},{&#34;date&#34;:&#34;2017-07-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000724593735381417,&#34;x&#34;:1501027200000,&#34;y&#34;:0.000724593735381417},{&#34;date&#34;:&#34;2017-07-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000590437231668881,&#34;x&#34;:1501113600000,&#34;y&#34;:0.000590437231668881},{&#34;date&#34;:&#34;2017-07-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000418764452709116,&#34;x&#34;:1501200000000,&#34;y&#34;:0.000418764452709116},{&#34;date&#34;:&#34;2017-07-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00112373658911328,&#34;x&#34;:1501459200000,&#34;y&#34;:0.00112373658911328},{&#34;date&#34;:&#34;2017-08-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00102780149433163,&#34;x&#34;:1501545600000,&#34;y&#34;:0.00102780149433163},{&#34;date&#34;:&#34;2017-08-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0002863885935313,&#34;x&#34;:1501632000000,&#34;y&#34;:0.0002863885935313},{&#34;date&#34;:&#34;2017-08-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00216380496530155,&#34;x&#34;:1501718400000,&#34;y&#34;:0.00216380496530155},{&#34;date&#34;:&#34;2017-08-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0020390862850439,&#34;x&#34;:1501804800000,&#34;y&#34;:0.0020390862850439},{&#34;date&#34;:&#34;2017-08-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00144022400144353,&#34;x&#34;:1502064000000,&#34;y&#34;:0.00144022400144353},{&#34;date&#34;:&#34;2017-08-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178102609248742,&#34;x&#34;:1502150400000,&#34;y&#34;:0.00178102609248742},{&#34;date&#34;:&#34;2017-08-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00173423072868356,&#34;x&#34;:1502236800000,&#34;y&#34;:0.00173423072868356},{&#34;date&#34;:&#34;2017-08-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00585601391382766,&#34;x&#34;:1502323200000,&#34;y&#34;:0.00585601391382766},{&#34;date&#34;:&#34;2017-08-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0025707399242942,&#34;x&#34;:1502409600000,&#34;y&#34;:0.0025707399242942},{&#34;date&#34;:&#34;2017-08-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00278565297348008,&#34;x&#34;:1502668800000,&#34;y&#34;:0.00278565297348008},{&#34;date&#34;:&#34;2017-08-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000598661458612812,&#34;x&#34;:1502755200000,&#34;y&#34;:0.000598661458612812},{&#34;date&#34;:&#34;2017-08-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00305110556814486,&#34;x&#34;:1502841600000,&#34;y&#34;:0.00305110556814486},{&#34;date&#34;:&#34;2017-08-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00575431425787176,&#34;x&#34;:1502928000000,&#34;y&#34;:0.00575431425787176},{&#34;date&#34;:&#34;2017-08-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000562189503631827,&#34;x&#34;:1503014400000,&#34;y&#34;:0.000562189503631827},{&#34;date&#34;:&#34;2017-08-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136023893386477,&#34;x&#34;:1503273600000,&#34;y&#34;:0.00136023893386477},{&#34;date&#34;:&#34;2017-08-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00249350862483187,&#34;x&#34;:1503360000000,&#34;y&#34;:0.00249350862483187},{&#34;date&#34;:&#34;2017-08-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208495474240162,&#34;x&#34;:1503446400000,&#34;y&#34;:0.00208495474240162},{&#34;date&#34;:&#34;2017-08-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00147841572396225,&#34;x&#34;:1503532800000,&#34;y&#34;:0.00147841572396225},{&#34;date&#34;:&#34;2017-08-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00202125503968285,&#34;x&#34;:1503619200000,&#34;y&#34;:0.00202125503968285},{&#34;date&#34;:&#34;2017-08-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000131985749159282,&#34;x&#34;:1503878400000,&#34;y&#34;:0.000131985749159282},{&#34;date&#34;:&#34;2017-08-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00391999455458316,&#34;x&#34;:1503964800000,&#34;y&#34;:0.00391999455458316},{&#34;date&#34;:&#34;2017-08-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00178521604081493,&#34;x&#34;:1504051200000,&#34;y&#34;:0.00178521604081493},{&#34;date&#34;:&#34;2017-08-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000244439546468598,&#34;x&#34;:1504137600000,&#34;y&#34;:0.000244439546468598},{&#34;date&#34;:&#34;2017-09-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000955465062412176,&#34;x&#34;:1504224000000,&#34;y&#34;:0.000955465062412176},{&#34;date&#34;:&#34;2017-09-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00506874671983177,&#34;x&#34;:1504569600000,&#34;y&#34;:0.00506874671983177},{&#34;date&#34;:&#34;2017-09-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00244980141200023,&#34;x&#34;:1504656000000,&#34;y&#34;:0.00244980141200023},{&#34;date&#34;:&#34;2017-09-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00299945537967095,&#34;x&#34;:1504742400000,&#34;y&#34;:0.00299945537967095},{&#34;date&#34;:&#34;2017-09-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00124741212445197,&#34;x&#34;:1504828800000,&#34;y&#34;:0.00124741212445197},{&#34;date&#34;:&#34;2017-09-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00173984561777132,&#34;x&#34;:1505088000000,&#34;y&#34;:0.00173984561777132},{&#34;date&#34;:&#34;2017-09-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208563767344366,&#34;x&#34;:1505174400000,&#34;y&#34;:0.00208563767344366},{&#34;date&#34;:&#34;2017-09-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00208755873836036,&#34;x&#34;:1505260800000,&#34;y&#34;:0.00208755873836036},{&#34;date&#34;:&#34;2017-09-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:5.35492512113534e-05,&#34;x&#34;:1505347200000,&#34;y&#34;:5.35492512113534e-05},{&#34;date&#34;:&#34;2017-09-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000942207369800087,&#34;x&#34;:1505433600000,&#34;y&#34;:0.000942207369800087},{&#34;date&#34;:&#34;2017-09-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00143626119319263,&#34;x&#34;:1505692800000,&#34;y&#34;:0.00143626119319263},{&#34;date&#34;:&#34;2017-09-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000323798894153753,&#34;x&#34;:1505779200000,&#34;y&#34;:0.000323798894153753},{&#34;date&#34;:&#34;2017-09-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00155049944364725,&#34;x&#34;:1505865600000,&#34;y&#34;:0.00155049944364725},{&#34;date&#34;:&#34;2017-09-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00176376363798185,&#34;x&#34;:1505952000000,&#34;y&#34;:0.00176376363798185},{&#34;date&#34;:&#34;2017-09-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000415792730767708,&#34;x&#34;:1506038400000,&#34;y&#34;:0.000415792730767708},{&#34;date&#34;:&#34;2017-09-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00254524556426304,&#34;x&#34;:1506297600000,&#34;y&#34;:0.00254524556426304},{&#34;date&#34;:&#34;2017-09-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00111846677080901,&#34;x&#34;:1506384000000,&#34;y&#34;:0.00111846677080901},{&#34;date&#34;:&#34;2017-09-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00236947032196308,&#34;x&#34;:1506470400000,&#34;y&#34;:0.00236947032196308},{&#34;date&#34;:&#34;2017-09-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.0013698886857053,&#34;x&#34;:1506556800000,&#34;y&#34;:0.0013698886857053},{&#34;date&#34;:&#34;2017-09-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00129241622887146,&#34;x&#34;:1506643200000,&#34;y&#34;:0.00129241622887146},{&#34;date&#34;:&#34;2017-10-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00351452183004398,&#34;x&#34;:1506902400000,&#34;y&#34;:0.00351452183004398},{&#34;date&#34;:&#34;2017-10-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00021945426661678,&#34;x&#34;:1506988800000,&#34;y&#34;:0.00021945426661678},{&#34;date&#34;:&#34;2017-10-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000979514740696812,&#34;x&#34;:1507075200000,&#34;y&#34;:0.000979514740696812},{&#34;date&#34;:&#34;2017-10-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00169205866343378,&#34;x&#34;:1507161600000,&#34;y&#34;:0.00169205866343378},{&#34;date&#34;:&#34;2017-10-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00103678310109957,&#34;x&#34;:1507248000000,&#34;y&#34;:0.00103678310109957},{&#34;date&#34;:&#34;2017-10-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00264705975475339,&#34;x&#34;:1507507200000,&#34;y&#34;:0.00264705975475339},{&#34;date&#34;:&#34;2017-10-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00119099648284331,&#34;x&#34;:1507593600000,&#34;y&#34;:0.00119099648284331},{&#34;date&#34;:&#34;2017-10-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000569358577152982,&#34;x&#34;:1507680000000,&#34;y&#34;:0.000569358577152982},{&#34;date&#34;:&#34;2017-10-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00132402101517672,&#34;x&#34;:1507766400000,&#34;y&#34;:0.00132402101517672},{&#34;date&#34;:&#34;2017-10-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000432152619367148,&#34;x&#34;:1507852800000,&#34;y&#34;:0.000432152619367148},{&#34;date&#34;:&#34;2017-10-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00121290820282521,&#34;x&#34;:1508112000000,&#34;y&#34;:0.00121290820282521},{&#34;date&#34;:&#34;2017-10-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000636049496482721,&#34;x&#34;:1508198400000,&#34;y&#34;:0.000636049496482721},{&#34;date&#34;:&#34;2017-10-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000316197071631185,&#34;x&#34;:1508284800000,&#34;y&#34;:0.000316197071631185},{&#34;date&#34;:&#34;2017-10-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000301573819444778,&#34;x&#34;:1508371200000,&#34;y&#34;:0.000301573819444778},{&#34;date&#34;:&#34;2017-10-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00406596387415966,&#34;x&#34;:1508457600000,&#34;y&#34;:0.00406596387415966},{&#34;date&#34;:&#34;2017-10-23&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00355686147299521,&#34;x&#34;:1508716800000,&#34;y&#34;:0.00355686147299521},{&#34;date&#34;:&#34;2017-10-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136140929244226,&#34;x&#34;:1508803200000,&#34;y&#34;:0.00136140929244226},{&#34;date&#34;:&#34;2017-10-25&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00165174014030913,&#34;x&#34;:1508889600000,&#34;y&#34;:0.00165174014030913},{&#34;date&#34;:&#34;2017-10-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00100238682889144,&#34;x&#34;:1508976000000,&#34;y&#34;:0.00100238682889144},{&#34;date&#34;:&#34;2017-10-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00141794327172736,&#34;x&#34;:1509062400000,&#34;y&#34;:0.00141794327172736},{&#34;date&#34;:&#34;2017-10-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00324552277266412,&#34;x&#34;:1509321600000,&#34;y&#34;:0.00324552277266412},{&#34;date&#34;:&#34;2017-10-31&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00087199540983986,&#34;x&#34;:1509408000000,&#34;y&#34;:0.00087199540983986},{&#34;date&#34;:&#34;2017-11-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00187456571156308,&#34;x&#34;:1509494400000,&#34;y&#34;:0.00187456571156308},{&#34;date&#34;:&#34;2017-11-02&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000879943303785382,&#34;x&#34;:1509580800000,&#34;y&#34;:0.000879943303785382},{&#34;date&#34;:&#34;2017-11-03&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000436694115392702,&#34;x&#34;:1509667200000,&#34;y&#34;:0.000436694115392702},{&#34;date&#34;:&#34;2017-11-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00136881117908498,&#34;x&#34;:1509926400000,&#34;y&#34;:0.00136881117908498},{&#34;date&#34;:&#34;2017-11-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00241278001359499,&#34;x&#34;:1510012800000,&#34;y&#34;:0.00241278001359499},{&#34;date&#34;:&#34;2017-11-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00046799600464614,&#34;x&#34;:1510099200000,&#34;y&#34;:0.00046799600464614},{&#34;date&#34;:&#34;2017-11-09&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000464882341365728,&#34;x&#34;:1510185600000,&#34;y&#34;:0.000464882341365728},{&#34;date&#34;:&#34;2017-11-10&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000435266335629412,&#34;x&#34;:1510272000000,&#34;y&#34;:0.000435266335629412},{&#34;date&#34;:&#34;2017-11-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000779059815034458,&#34;x&#34;:1510531200000,&#34;y&#34;:0.000779059815034458},{&#34;date&#34;:&#34;2017-11-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00242723716408704,&#34;x&#34;:1510617600000,&#34;y&#34;:0.00242723716408704},{&#34;date&#34;:&#34;2017-11-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000942307511846099,&#34;x&#34;:1510704000000,&#34;y&#34;:0.000942307511846099},{&#34;date&#34;:&#34;2017-11-16&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00322323632467401,&#34;x&#34;:1510790400000,&#34;y&#34;:0.00322323632467401},{&#34;date&#34;:&#34;2017-11-17&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00143858562566698,&#34;x&#34;:1510876800000,&#34;y&#34;:0.00143858562566698},{&#34;date&#34;:&#34;2017-11-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00148140095216353,&#34;x&#34;:1511136000000,&#34;y&#34;:0.00148140095216353},{&#34;date&#34;:&#34;2017-11-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000342712528964379,&#34;x&#34;:1511222400000,&#34;y&#34;:0.000342712528964379},{&#34;date&#34;:&#34;2017-11-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00129852636681049,&#34;x&#34;:1511308800000,&#34;y&#34;:0.00129852636681049},{&#34;date&#34;:&#34;2017-11-24&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000523981551319308,&#34;x&#34;:1511481600000,&#34;y&#34;:0.000523981551319308},{&#34;date&#34;:&#34;2017-11-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000109118405659181,&#34;x&#34;:1511740800000,&#34;y&#34;:0.000109118405659181},{&#34;date&#34;:&#34;2017-11-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00425595935550045,&#34;x&#34;:1511827200000,&#34;y&#34;:0.00425595935550045},{&#34;date&#34;:&#34;2017-11-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000812053876236767,&#34;x&#34;:1511913600000,&#34;y&#34;:0.000812053876236767},{&#34;date&#34;:&#34;2017-11-30&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00567167634956679,&#34;x&#34;:1512000000000,&#34;y&#34;:0.00567167634956679},{&#34;date&#34;:&#34;2017-12-01&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00131648503522855,&#34;x&#34;:1512086400000,&#34;y&#34;:0.00131648503522855},{&#34;date&#34;:&#34;2017-12-04&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000202800762239206,&#34;x&#34;:1512345600000,&#34;y&#34;:0.000202800762239206},{&#34;date&#34;:&#34;2017-12-05&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000220439983437353,&#34;x&#34;:1512432000000,&#34;y&#34;:0.000220439983437353},{&#34;date&#34;:&#34;2017-12-06&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000334522204095748,&#34;x&#34;:1512518400000,&#34;y&#34;:0.000334522204095748},{&#34;date&#34;:&#34;2017-12-07&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00118911941047771,&#34;x&#34;:1512604800000,&#34;y&#34;:0.00118911941047771},{&#34;date&#34;:&#34;2017-12-08&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00239770292034793,&#34;x&#34;:1512691200000,&#34;y&#34;:0.00239770292034793},{&#34;date&#34;:&#34;2017-12-11&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000404106695356842,&#34;x&#34;:1512950400000,&#34;y&#34;:0.000404106695356842},{&#34;date&#34;:&#34;2017-12-12&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000860339700663732,&#34;x&#34;:1513036800000,&#34;y&#34;:0.000860339700663732},{&#34;date&#34;:&#34;2017-12-13&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000816992792503522,&#34;x&#34;:1513123200000,&#34;y&#34;:0.000816992792503522},{&#34;date&#34;:&#34;2017-12-14&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000475246264804703,&#34;x&#34;:1513209600000,&#34;y&#34;:0.000475246264804703},{&#34;date&#34;:&#34;2017-12-15&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00510855365225753,&#34;x&#34;:1513296000000,&#34;y&#34;:0.00510855365225753},{&#34;date&#34;:&#34;2017-12-18&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000761697975464818,&#34;x&#34;:1513555200000,&#34;y&#34;:0.000761697975464818},{&#34;date&#34;:&#34;2017-12-19&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00324328997442093,&#34;x&#34;:1513641600000,&#34;y&#34;:0.00324328997442093},{&#34;date&#34;:&#34;2017-12-20&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00139695394569652,&#34;x&#34;:1513728000000,&#34;y&#34;:0.00139695394569652},{&#34;date&#34;:&#34;2017-12-21&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:5.61810734120722e-05,&#34;x&#34;:1513814400000,&#34;y&#34;:5.61810734120722e-05},{&#34;date&#34;:&#34;2017-12-22&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00135185904279269,&#34;x&#34;:1513900800000,&#34;y&#34;:0.00135185904279269},{&#34;date&#34;:&#34;2017-12-26&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000284135320262809,&#34;x&#34;:1514246400000,&#34;y&#34;:0.000284135320262809},{&#34;date&#34;:&#34;2017-12-27&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000798608648818393,&#34;x&#34;:1514332800000,&#34;y&#34;:0.000798608648818393},{&#34;date&#34;:&#34;2017-12-28&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.000531259849385336,&#34;x&#34;:1514419200000,&#34;y&#34;:0.000531259849385336},{&#34;date&#34;:&#34;2017-12-29&#34;,&#34;.metric&#34;:&#34;rmse&#34;,&#34;.estimator&#34;:&#34;standard&#34;,&#34;.estimate&#34;:0.00227136567770183,&#34;x&#34;:1514505600000,&#34;y&#34;:0.00227136567770183}],&#34;type&#34;:&#34;scatter&#34;}],&#34;xAxis&#34;:{&#34;type&#34;:&#34;datetime&#34;,&#34;title&#34;:{&#34;text&#34;:&#34;date&#34;},&#34;categories&#34;:null}},&#34;theme&#34;:{&#34;chart&#34;:{&#34;backgroundColor&#34;:&#34;transparent&#34;}},&#34;conf_opts&#34;:{&#34;global&#34;:{&#34;Date&#34;:null,&#34;VMLRadialGradientURL&#34;:&#34;http =//code.highcharts.com/list(version)/gfx/vml-radial-gradient.png&#34;,&#34;canvasToolsURL&#34;:&#34;http =//code.highcharts.com/list(version)/modules/canvas-tools.js&#34;,&#34;getTimezoneOffset&#34;:null,&#34;timezoneOffset&#34;:0,&#34;useUTC&#34;:true},&#34;lang&#34;:{&#34;contextButtonTitle&#34;:&#34;Chart context menu&#34;,&#34;decimalPoint&#34;:&#34;.&#34;,&#34;downloadJPEG&#34;:&#34;Download JPEG image&#34;,&#34;downloadPDF&#34;:&#34;Download PDF document&#34;,&#34;downloadPNG&#34;:&#34;Download PNG image&#34;,&#34;downloadSVG&#34;:&#34;Download SVG vector image&#34;,&#34;drillUpText&#34;:&#34;Back to {series.name}&#34;,&#34;invalidDate&#34;:null,&#34;loading&#34;:&#34;Loading...&#34;,&#34;months&#34;:[&#34;January&#34;,&#34;February&#34;,&#34;March&#34;,&#34;April&#34;,&#34;May&#34;,&#34;June&#34;,&#34;July&#34;,&#34;August&#34;,&#34;September&#34;,&#34;October&#34;,&#34;November&#34;,&#34;December&#34;],&#34;noData&#34;:&#34;No data to display&#34;,&#34;numericSymbols&#34;:[&#34;k&#34;,&#34;M&#34;,&#34;G&#34;,&#34;T&#34;,&#34;P&#34;,&#34;E&#34;],&#34;printChart&#34;:&#34;Print chart&#34;,&#34;resetZoom&#34;:&#34;Reset zoom&#34;,&#34;resetZoomTitle&#34;:&#34;Reset zoom level 1:1&#34;,&#34;shortMonths&#34;:[&#34;Jan&#34;,&#34;Feb&#34;,&#34;Mar&#34;,&#34;Apr&#34;,&#34;May&#34;,&#34;Jun&#34;,&#34;Jul&#34;,&#34;Aug&#34;,&#34;Sep&#34;,&#34;Oct&#34;,&#34;Nov&#34;,&#34;Dec&#34;],&#34;thousandsSep&#34;:&#34; &#34;,&#34;weekdays&#34;:[&#34;Sunday&#34;,&#34;Monday&#34;,&#34;Tuesday&#34;,&#34;Wednesday&#34;,&#34;Thursday&#34;,&#34;Friday&#34;,&#34;Saturday&#34;]}},&#34;type&#34;:&#34;chart&#34;,&#34;fonts&#34;:[],&#34;debug&#34;:false},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;
&lt;p&gt;It looks like our RMSE is relatively stable, except for a period in mid to late 2015.&lt;/p&gt;
&lt;p&gt;The amazing power of &lt;code&gt;parsnip&lt;/code&gt; is how efficiently we can toggle to another random forest engine. Let’s suppose we wished to use the &lt;a href=&#34;https://cran.r-project.org/web/packages/randomForest/randomForest.pdf&#34;&gt;&lt;code&gt;randomForest&lt;/code&gt;&lt;/a&gt; package instead of &lt;code&gt;ranger&lt;/code&gt;. Here’s how we could reconfigure our previous work to use a different engine.&lt;/p&gt;
&lt;p&gt;First, we’ll load up the &lt;code&gt;randomForest&lt;/code&gt; package, because we need to load the package in order to use it as our engine. Then, we make one tweak to the original &lt;code&gt;ranger_rf_regress&lt;/code&gt; function, by changing &lt;code&gt;set_engine(&amp;quot;ranger&amp;quot;)&lt;/code&gt; to &lt;code&gt;set_engine(&amp;quot;randomForest&amp;quot;)&lt;/code&gt;. That’s all, and we’re now running a random forest model using a different package.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(randomForest)

randomForest_rf_regress &amp;lt;- function(mtry = 3, trees = 5, split){
    
    analysis_set_rf &amp;lt;- analysis(split)
     
    model &amp;lt;- 
      rand_forest(mtry = mtry, trees = trees) %&amp;gt;%
        set_engine(&amp;quot;randomForest&amp;quot;) %&amp;gt;%
        fit(daily_returns ~ MKT + SMB + HML + RMW + CMA, data = analysis_set_rf)

    
    assessment_set_rf &amp;lt;- assessment(split)

    assessment_set_rf %&amp;gt;%
      select(date, daily_returns) %&amp;gt;%
      mutate(.pred = unlist(predict(model, new_data = assessment_set_rf))) %&amp;gt;% 
      select(date, daily_returns, .pred)
   
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;We now have a new function called &lt;code&gt;randomForest_rf_regress()&lt;/code&gt; that uses &lt;code&gt;randomForest&lt;/code&gt; as the engine for our model and can use the same code scaffolding to run that model on our 1159 splits.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;randomForest_results &amp;lt;- 
  map_df(.x = rolling_origin_spy_2013_2017$splits,
         ~randomForest_rf_regress(mtry = 3, trees = 100, split = .x))

randomForest_results %&amp;gt;% 
  head()&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 6 x 4
# Groups:   asset [1]
  asset date       daily_returns    .pred
  &amp;lt;chr&amp;gt; &amp;lt;date&amp;gt;             &amp;lt;dbl&amp;gt;    &amp;lt;dbl&amp;gt;
1 SPY   2013-05-28       0.00597  0.00609
2 SPY   2013-05-29      -0.00652 -0.00438
3 SPY   2013-05-30       0.00369  0.00597
4 SPY   2013-05-31      -0.0145  -0.00987
5 SPY   2013-06-03       0.00549  0.00134
6 SPY   2013-06-04      -0.00482  0.00118&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And we can use the same &lt;code&gt;yardstick&lt;/code&gt; code to extract the &lt;code&gt;RMSE&lt;/code&gt;.&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;randomForest_results %&amp;gt;%
  group_by(date) %&amp;gt;% 
  rmse(daily_returns, .pred) %&amp;gt;% 
  summarise(avg_rmse = mean(.estimate))&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;# A tibble: 1 x 1
  avg_rmse
     &amp;lt;dbl&amp;gt;
1  0.00252&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;There’s a lot more to explore in the &lt;code&gt;parsnip&lt;/code&gt; package and the &lt;code&gt;tidymodels&lt;/code&gt; collection. See you next time when we’ll get into some classification!&lt;/p&gt;
&lt;p&gt;Wait: shameless book plug for those who read to the end: if you like this sort of thing, check out my new book &lt;a href=&#34;https://www.amazon.com/Reproducible-Finance-Portfolio-Analysis-Chapman/dp/1138484032&#34;&gt;Reproducible Finance with R&lt;/a&gt;!&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2019/03/14/parsnipping-fama-french/&#39;;&lt;/script&gt;
      </description>
    </item>
    
  </channel>
</rss>
