sti: Compute standardized temperature indices

Description Usage Arguments Details Value Note Author(s) Examples

Description

sti returns a time series of standardized temperature indices (STI).

Usage

1
sti(values, scale)

Arguments

values

a time ordered vector of temperature values.

scale

an integer representing the time scale at which the STI will be computed.

Details

The sti function allows computing the STI.

In essence, the function standardizes a variable following a normal distribution function (which is assumed to be the case for temperature values given as input to the function). It is designed to be used with monthly values.

STI values can be computed on different time scales given in number of months to the function. Typical values are 1, 3, 6, 12, 24 or 48 for monthly, seasonal, annual or interannual calculation.

In practice, computation of the STI is made first by averaging temperature values over the time scale specified for each month of the time series. For example, on a time series of 1,200 consecutive monthly temperature values over a century:

Once average values are calculated, the function extracts the values for the twelve months of the year and fits normal probability density functions (PDFs) to the frequency distribution of the averaged values. The mu and sigma parameters of the normal probability density functions are thus estimated for each month of the year using the maximum-likelihood estimation (MLE) method.

The PDFs are then standardized with mean equals zero and standard deviation equals one. Twelve standardized PDFs are thus obtained to determine the probability of occurrence of a temperature value for a given month.

A STI value is actually the initial temperature value transformed into a standard deviation from the median of the standardized normal distribution of the temperature values of the same month in the time series.

The cumulative probabilities for the various STI values and interpretation can be summed as follow:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
         Cumulative                                           Probability
 STI     Probability  Interpretation    Class                 of occurrence
----------------------------------------------------------------------------
+2.0     0.9772       Extremely hot     STI >= +2.0           0.023
+1.5     0.9332       Very hot          +1.5 >= STI < +2.0    0.044
+1.0     0.8413       Moderately hot    +1.0 >= STI < +1.5    0.092
 0.0     0.5000       Near normal       -1.0 >  STI < +1.0    0.682
-1.0     0.1587       Moderately cold   -1.0 <= STI > -1.5    0.092
-1.5     0.0668       Very cold         -1.5 <= STI > -2.0    0.044
-2.0     0.0228       Extremely cold    -2.0 <= STI           0.023
----------------------------------------------------------------------------

Input data

The STI is designed to be used with monthly values.

There is currently no fine tuned control on the input data. Please make sure your input data is a valid vector of integer or float time ordered temperature values not containing NAs. If NAs occur in your data, all months used for the computation of the averaged values will not be taken into account for fitting the PDFs.

Time scale

Typical values are 1, 3, 6, 12, 24 and 48.

There is currently no fine tuned control on the parameter. Please make sure the scale parameter is an integer between 1 and a resonable number for interannual computation of the index, typically 24 or 48.

Fitting method

Parameter fitting is based on the maximum-likelihood estimation method.

Value

Function sti returns a time ordered series of STI values.

Note

Dependencies: the sti function depends on the libraries fitdistrplus and zoo.

Author(s)

Marc Fasel <marc.fasel@unige.ch>

Examples

1
2
3
data(engelberg)

sti(engelberg$Temperature, 12)

Example output

   [1]           NA           NA           NA           NA           NA
   [6]           NA           NA           NA           NA           NA
  [11]           NA -1.654702452 -1.074938445 -1.191300458 -1.787229305
  [16] -1.343782911 -1.077679618 -0.974524177 -0.760931306 -0.720711793
  [21] -0.472467856 -0.282597692 -0.044224072  0.101671533  0.186582580
  [26]  0.725095383  1.225179071  1.009362401  0.457698627  0.565972617
  [31]  0.367039829  0.268323554  0.126373719  0.035873800 -0.173032049
  [36]  0.186316063 -0.069824133  0.103286094  0.150753417  0.108157813
  [41]  0.406519353  0.300721514  0.245097003  0.549417811  0.638111065
  [46]  0.354345292  0.170455889 -0.395615077 -0.715969048 -1.079170914
  [51] -1.275119881 -1.463943523 -1.006028633 -0.841898625 -0.750769404
  [56] -0.772766284 -0.733780543 -0.458306101 -0.527253985  0.345024555
  [61]  0.504526903  0.939160875  0.723111008  0.929255326  0.641944017
  [66]  0.198701858  0.417849339  0.247501758  0.180813862 -0.150816385
  [71]  0.127519897 -0.427356776 -0.490331141 -1.130138888 -0.963837682
  [76] -1.093448304 -1.180038168 -0.862302556 -0.913359838 -0.980984252
  [81] -1.289070003 -1.029358432 -1.085421885 -1.474832827 -1.731339629
  [86] -1.497108305 -1.194788991 -1.073421535 -1.333575992 -1.719267661
  [91] -1.827931028 -1.636870851 -1.376174232 -1.567465436 -1.836801750
  [96] -2.109666798 -1.403139037 -1.395172356 -1.295202603 -1.283702605
 [101] -1.333575992 -1.056139901 -1.075950272 -1.241256712 -1.452390433
 [106] -1.095249085 -0.484317993  0.694183239  0.822471227  0.643546623
 [111]  0.753235092  0.528719954  0.396283498  0.463952962  0.580439773
 [116]  0.882566559  0.834095580  0.683798560  0.471007835 -0.205164886
 [121] -0.439049799 -0.477748815 -0.813217263 -0.552725551 -0.698952984
 [126] -0.627657349 -0.588178970 -0.835231675 -0.646676314 -0.535178530
 [131] -0.827805931 -0.882321121 -0.685200242 -0.967041370 -1.064251295
 [136] -1.253662453 -0.688717129 -0.699071108 -1.014978859 -0.762355386
 [141] -0.853548858 -1.128194412 -0.913677916 -0.935223952 -1.208269936
 [146] -0.661233523 -0.411562813 -0.332431096 -0.913905938 -0.974524177
 [151] -0.801578915 -0.876875268 -1.180189717 -0.809722920 -0.827805931
 [156] -0.088778658  0.309657802  0.388706751  0.200960223  0.168238119
 [161]  0.283689093  0.555770652  0.417849339  0.528596014  0.442126549
 [166] -0.030016853  0.245593876 -0.162842621 -0.726225316 -0.885492611
 [171] -0.863424070 -0.873153849 -0.504471740 -0.801090763 -0.842226523
 [176] -0.980984252 -0.831772801 -0.491251428 -0.806337935 -1.030449048
 [181] -0.715969048 -0.620459144 -0.381438729 -0.522685398 -1.098151328
 [186] -1.035735970 -1.177569293 -1.022627846 -1.049533373 -1.358811699
 [191] -1.504047810 -1.739346982 -2.162102906 -2.139304783 -1.967973807
 [196] -1.704264746 -1.487113817 -1.678459799 -1.329997825 -1.595227257
 [201] -1.615710862 -1.380775251 -0.935145912  0.069929835  0.176326311
 [206]  0.184834853  0.090505249 -0.052056336  0.007321009  0.066076307
 [211]  0.204449395  0.382843437  0.224365977 -0.216707038 -0.087160064
 [216] -0.490840173 -0.080080401 -0.284070512 -0.230818311 -0.202257100
 [221] -0.095037541 -0.107357107 -0.527207557 -0.772766284 -0.897100972
 [226] -0.458306101 -0.548721981 -0.353292812 -0.203155623 -0.008843450
 [231] -0.572224593 -0.652859394 -0.658009564 -0.648061280 -0.608502774
 [236] -0.491672028 -0.363587569 -0.601069184 -0.709731953 -1.041029614
 [241] -1.013400834 -0.946654180 -0.441686897 -0.432564939 -0.330462205
 [246] -0.576647522 -0.364617124 -0.252221365 -0.189379111 -0.216707038
 [251] -0.452115999 -0.236906584 -0.828788001 -0.712201498 -0.843341347
 [256] -0.662872778 -1.036736198 -0.556243591 -0.537369460 -0.627013707
 [261] -0.733780543 -0.809722920 -0.473583995 -0.607226401 -0.346743382
 [266] -0.997622155 -1.144582185 -1.143515225 -0.913905938 -1.260179212
 [271] -1.309674020 -1.303722102 -1.136637602 -0.776777593 -0.838539929
 [276] -0.660129231 -0.818531733 -0.702007903 -0.732886373 -0.913207386
 [281] -1.220981587 -0.872504522 -0.760931306 -0.772766284 -1.114861545
 [286] -1.743173845 -1.718727771 -1.919216607 -1.782620972 -1.721367392
 [291] -1.616526164 -1.754331668 -1.446170397 -1.556036212 -1.919388147
 [296] -2.063717685 -2.018567921 -1.907900479 -1.750929766 -1.273802070
 [301] -1.239038741 -1.293236407 -1.425740300 -1.333769527 -1.302868427
 [306] -1.198967419 -1.035302663 -0.960162455 -1.191077745 -0.930522452
 [311] -0.978081904 -1.633541320 -0.982632029 -1.130138888 -0.863424070
 [316] -0.803060159 -0.903670083 -1.168361522 -1.309674020 -1.324543899
 [321] -1.267293946 -1.435684129 -1.589919794 -1.697024717 -2.644147526
 [326] -2.557242174 -2.510207315 -2.725629946 -2.899661802 -2.749666179
 [331] -2.671368904 -2.771658775 -2.813394011 -2.500916361 -2.384235652
 [336] -1.707605283 -1.136476056 -0.702007903 -0.993961766 -0.742979853
 [341] -0.729660549 -0.719475039 -0.649150383 -0.397973942 -0.385363627
 [346] -0.546160306 -0.258904034 -0.607226401 -1.074938445 -1.038396534
 [351] -0.622431400 -0.292377559 -0.350933915 -0.382810177 -0.374779026
 [356] -0.408384841 -0.483355884 -0.282597692 -0.645327964 -0.459098474
 [361] -0.069824133 -0.222908943 -0.250901033 -0.362471249 -0.412349045
 [366] -0.474627866 -0.384940928 -0.512493825 -0.690228428 -0.897577125
 [371] -0.570189978 -0.628387533 -0.890325612 -1.670399418 -1.827394750
 [376] -1.934572585 -1.906783870 -1.811085351 -1.777121518 -1.782623428
 [381] -1.441502404 -1.490593007 -1.267899852 -0.988126783 -0.746737853
 [386] -0.059811424  0.271249752 -0.052056336 -0.269047075 -0.301194452
 [391] -0.344293319 -0.574959215 -0.940653087 -1.040340207 -1.643589785
 [396] -1.633541320 -1.403139037 -0.977234965 -0.863424070 -0.602792473
 [401] -0.586358579 -0.423618039 -0.425588536 -0.137701483 -0.232931226
 [406] -0.238670589  0.127519897  0.048768702  0.432733024  0.103286094
 [411] -0.270983756 -0.282364175 -0.176924381 -0.474627866 -0.659312285
 [416] -0.533315622 -0.265595312  0.024892025  0.191923886  0.196896629
 [421]  0.114788700  0.317351587  0.401787448  0.378519190  0.396283498
 [426]  0.525164755  0.651573088  0.643115897  0.485678664  0.453181273
 [431]  0.363667855  0.196896629  0.073763626  0.184834853 -0.200694227
 [436] -0.292377559 -0.340698060 -0.229780694 -0.130893375 -0.314686755
 [441] -0.091386854 -0.183761712 -0.248170035  0.175735497 -0.080080401
 [446] -0.946654180 -0.732886373 -0.592779088 -0.473764175 -0.546041625
 [451] -0.608502774 -0.533315622 -0.679340400 -0.765795818 -1.203495864
 [456] -1.390188298 -1.218526204 -0.712201498 -0.562183232 -0.432564939
 [461] -0.862726664 -1.005130074 -0.964169348 -0.991395151 -1.114861545
 [466] -1.161139739 -0.827805931 -0.850579423 -0.849300538 -0.600071954
 [471] -0.431645536 -0.923220770 -0.494235885 -0.525637694 -0.720283698
 [476] -0.658246402 -0.733780543 -0.546160306 -0.527253985 -0.575484702
 [481] -0.644175168 -0.752975877 -0.873465431 -0.352457865 -0.258811220
 [486] -0.035943349  0.316230318  0.414076132  0.289694148  0.156673332
 [491]  0.073849907  0.218057761  0.001969747 -0.233102538 -0.160528782
 [496] -0.362471249 -0.668245419 -0.678667177 -0.699959893 -0.783177183
 [501] -0.592236171 -1.172121514 -1.063953889 -1.231479805 -0.900581881
 [506] -0.916073396 -1.104416740 -1.203595531 -1.077679618 -1.270381178
 [511] -1.482426356 -1.397420188 -1.626598891 -0.820704696 -0.666795960
 [516] -0.861159989 -0.982632029 -1.211687648 -1.275119881 -1.373823064
 [521] -1.323340137 -1.198967419 -1.390969237 -1.449474680 -1.299958032
 [526] -1.369793475 -1.300101847 -0.755354327 -0.746737853 -0.365619271
 [531] -0.311149201 -0.342444481 -0.258811220 -0.097155142  0.041858961
 [536] -0.148112381 -0.320035455 -0.513214979 -0.827805931 -1.030449048
 [541] -1.146732325 -1.497108305 -1.526153912 -1.143515225 -1.415462832
 [546] -1.770277488 -1.939711951 -1.865910615 -1.985903835 -1.852991601
 [551] -1.933407733 -1.622960754 -1.239038741 -0.793750257 -0.582265955
 [556] -0.793046774 -0.883198373 -0.648061280 -0.638988481 -0.679068199
 [561] -0.864436886 -0.919540676 -0.688263956 -0.512001305 -0.941606955
 [566] -1.028202940 -0.943754960 -0.983301076 -0.852490809 -0.943918281
 [571] -0.496721851 -0.096057889  0.355022320  0.255509312  0.481741833
 [576]  0.397927386  1.017340328  1.499808595  1.697123050  1.670245765
 [581]  1.778123919  1.820814377  1.525496670  1.007497340  0.322358234
 [586]  0.156673332 -0.344776018 -0.459098474 -0.449306067 -0.946654180
 [591] -0.973879043 -0.863140465 -0.975321068 -1.056139901 -1.299512118
 [596] -1.168380423 -0.777332657 -0.348488345  0.277795870  0.175735497
 [601] -0.572381289 -0.233102538 -0.381438729 -0.152190179 -0.330462205
 [606] -0.433820004 -0.273160005 -0.148112381 -0.124050940 -0.425360774
 [611] -0.860007926 -0.607226401 -0.080080401 -0.396200056 -0.612390038
 [616] -1.013341229 -0.637537854 -0.290992487 -0.262998102 -0.397973942
 [621] -0.592236171 -0.864631798 -1.021017897 -0.797676592 -0.551868752
 [626] -0.355425676 -0.160528782  0.028050739 -0.115509251 -0.515435729
 [631] -0.517045655 -0.439617536 -0.483355884 -0.227688814  0.106051901
 [636] -0.162842621 -0.695456511 -1.119945294 -1.345409410 -1.694251362
 [641] -1.466642107 -1.056139901 -0.994655055 -0.991395151 -0.559572085
 [646] -0.798741144 -0.956613908 -1.485413393 -1.003144566 -0.681620713
 [651] -0.511976426 -0.132163410 -0.330462205 -0.760282901 -0.750769404
 [656] -0.741533589 -0.984205201 -0.908558900 -0.720465951 -0.057036959
 [661] -0.223668160 -0.355425676 -0.341273284 -0.662872778 -0.862726664
 [666] -0.617455384 -0.893036034 -0.679068199 -0.559572085 -0.831686471
 [671] -1.031751895 -1.146835276 -0.798019196 -0.467555220 -0.170570143
 [676]  0.208291656  0.498642047  0.433347066  0.722706403  0.403665234
 [681]  0.257030063  0.661835009  0.900367758  0.757666636  0.812214958
 [686]  0.500836295  0.341539281  0.148211351  0.038028574  0.086480238
 [691]  0.295906514  0.528596014  0.692551208  0.969324725  0.546145822
 [696]  0.620119276  0.145557506  0.174641258  0.100546611  0.008023970
 [701]  0.078971994  0.127288100 -0.222350494 -0.231399568 -0.646676314
 [706] -1.117212637 -1.021017897 -1.083351879 -1.115963519 -0.854911826
 [711] -0.873465431 -0.682899547 -0.913905938 -1.331592971 -0.974331250
 [716] -0.887286167 -0.701116457 -0.227688814  0.009445918 -0.057036959
 [721] -0.028799059 -0.579684764 -0.682679567 -0.642846010 -0.504471740
 [726] -0.148164970 -0.374779026 -0.762355386 -0.777332657 -1.040340207
 [731] -0.902943918 -0.744773761 -0.449306067  0.052318120 -0.180611504
 [736] -0.222283869 -0.340698060 -0.290992487 -0.344293319 -0.075236092
 [741] -0.320035455 -0.282597692 -0.559455980 -0.575484702 -0.695456511
 [746] -0.304457702  0.140712056  0.308425499  0.119915414 -0.168568901
 [751] -0.202026690 -0.137701483  0.322358234  0.376308843  0.911101756
 [756]  0.725924938  0.699396005  0.113479689  0.080463888 -0.052056336
 [761]  0.252981528  0.525164755  0.621087382  0.591061405  0.409462463
 [766]  0.255509312  0.009445918  0.133413232  0.299401533  0.500836295
 [771]  0.522283783  0.528719954  0.171094688  0.188499893  0.488982654
 [776]  0.715992185  0.692551208  0.694780336  0.750091785  0.620119276
 [781] -0.018542790 -0.844718231 -0.983920405 -1.273689221 -1.026500343
 [786] -0.964322212 -1.167407391 -1.334954798 -1.082197459 -0.952486003
 [791] -0.956613908 -0.427356776  0.371195413  0.867805711  1.034393207
 [796]  1.369844236  1.266331170  1.453543618  1.230801509  1.309413393
 [801]  1.193400525  1.112087808  1.265323693  0.852891732  0.340426607
 [806]  0.276577207 -0.100280614 -0.322417712 -0.002914846 -0.035943349
 [811]  0.001211353 -0.127290584 -0.657564342 -0.754814042 -0.902943918
 [816] -1.062190746 -0.736481585 -1.089364509 -1.004003127 -1.013341229
 [821] -1.323340137 -1.688661764 -1.685664399 -1.303722102 -0.614012228
 [826] -0.546160306 -0.666795960 -0.109939790 -0.541612483 -0.008843450
 [831]  0.251167029  0.438599495  0.365575933  0.219105789  0.387363633
 [836]  0.278734453  0.061045547  0.134709781  0.063115909 -0.734193195
 [841] -0.521099946 -0.661233523 -0.773051818 -0.552725551 -0.228103655
 [846]  0.035470410  0.041858961 -0.179345076 -0.134938968 -0.271615916
 [851] -0.248170035  0.736505504  0.412220487  0.674127408  0.542366506
 [856]  0.178251503 -0.197396091  0.004864513  0.011373255  0.039283790
 [861] -0.036946710 -0.030016853  0.138253895 -0.363873379  0.453245561
 [866]  0.409093941  0.753235092  0.809094715  1.020670651  0.749607997
 [871]  0.539792165  0.622294100  0.594558950  0.211582210  0.041647913
 [876]  0.228638327 -0.018542790  0.266383612 -0.060115169 -0.062069720
 [881]  0.119915414  0.280317583  0.387363633  0.445308827  0.355022320
 [886]  0.947361174  0.857431766  0.577797011  0.401964218 -0.008843450
 [891]  0.331497920  0.068104276 -0.299754640 -0.290992487 -0.374779026
 [896] -0.387563044 -0.287371369 -0.469287877 -0.108628060 -0.067617526
 [901]  0.022482284  0.215415638 -0.301107839  0.088131045 -0.054094121
 [906] -0.158366935 -0.202026690 -0.127290584 -0.254707283 -0.337506570
 [911] -0.419914005 -0.406195643 -1.033913371 -1.038396534 -0.732886373
 [916] -0.793046774 -0.535179305 -0.607253418 -0.638988481 -0.803998980
 [921] -0.755556600 -0.743832267 -0.849273927 -1.273802070 -1.023657103
 [926] -1.079170914 -1.014044488 -1.223622300 -1.548528946 -1.403006729
 [931] -1.126759782 -1.116325931 -1.278181974 -1.369793475 -1.504047810
 [936] -1.093932445 -1.290320084 -1.782528962 -1.656691609 -1.453930139
 [941] -1.108387183 -1.168361522 -1.319835922 -1.199613118 -0.951541115
 [946] -0.502233204 -0.763401943 -0.363873379  0.196838848  0.776063357
 [951]  0.833565982  0.979322248  1.071849926  0.943445342  0.976753956
 [956]  1.184482613  1.160736439  1.057178930  1.190185706  0.969277960
 [961]  0.996827791  0.592578649  0.030257082 -0.052056336 -0.166688526
 [966] -0.199174797 -0.252836200 -0.116879686 -0.309147426 -0.644996286
 [971] -0.527253985 -0.681290364 -1.372370232 -0.783556662 -0.321190562
 [976] -0.272350790 -0.033622411  0.300721514  0.417849339  0.091338282
 [981]  0.213477948  0.365327068  0.191923886  0.450830217  0.832727495
 [986]  0.827031332  0.783359176  0.939268711  0.856896971  0.565972617
 [991]  0.509306458  0.559828709  0.648999093  0.541035477  0.696421795
 [996]  0.397927386  0.258376459 -0.182134563 -0.120363337 -0.102123257
[1001] -0.013150701  0.270115617  0.397525535  0.684759490  0.801431494
[1006]  0.914415847  1.254589695  1.508886835  2.104504789  2.335683376
[1011]  2.540597395  2.361169282  2.351331797  2.065661550  1.616953789
[1016]  1.444755073  1.291392782  1.320741544  1.104313722  1.053922489
[1021]  0.740421079  0.623159434  0.030257082  0.168238119 -0.135980961
[1026] -0.056347280  0.336554122  0.424487030  0.779655437  0.914415847
[1031]  0.728623789  0.937536261  0.760933616  1.061484014  1.295468600
[1036]  0.889201789  1.245859460  1.484149515  1.576306180  1.652973040
[1041]  1.400273069  1.188960237  1.233121699  0.799988901  0.976315254
[1046]  0.806644142  0.642780118  0.708960872  0.478170337  0.208903824
[1051]  0.001211353 -0.064825194  0.039269490 -0.008053302  0.234859878
[1056]  0.556635879  0.299401533 -0.059811424  0.140712056  0.328452268
[1061]  0.508877902  0.667992273  0.844649228  0.976264645  0.638111065
[1066]  0.683798560  0.213391882  0.048768702 -0.254436966 -0.192328158
[1071] -0.260942394 -0.262337406 -0.289518785 -0.556243591 -0.730445600
[1076] -0.814409878 -0.450691798 -0.282597692 -0.130096057  0.281541158
[1081]  0.371195413  0.358125966  0.441952893  0.058090892 -0.176924381
[1086] -0.086953176 -0.374779026 -0.512493825 -0.614012228 -0.699905164
[1091] -0.548721981 -0.691870930 -0.151874281  0.001350145 -0.371397368
[1096] -0.152190179 -0.115509251 -0.097155142  0.092668472  0.153803672
[1101]  0.028381461 -0.194743487 -0.462849997 -0.279228849 -0.377512188
[1106] -1.374785166 -1.064251295 -1.243649068 -1.159566458 -1.423410660
[1111] -1.421454944 -1.449474680 -1.321734089 -1.369793475 -1.514781808
[1116] -1.866313776 -2.018515147 -0.651039928 -0.311149201 -0.132163410
[1121] -0.514707595 -0.168568901 -0.171540983 -0.158523279 -0.363587569
[1126] -0.194743487  0.148987893  0.207477195  0.237863922  0.195028448
[1131] -0.572224593 -0.843113696 -0.299754640 -0.433820004 -0.364617124
[1136] -0.168934178  0.104597662  0.002928473 -0.162298051  0.059349269
[1141]  0.104532432 -0.008843450  0.652821480  1.059429322  0.938783811
[1146]  1.004657135  1.108858683  1.017908239  0.997416009  1.101106032
[1151]  1.061377729  1.043341923  0.955802717  0.939160875  0.853648705
[1156]  0.678920719  0.754538422  0.800617825  0.458496948  0.476541522
[1161]  0.224365977  0.299436414  0.610549810  0.281541158  0.340426607
[1166]  0.582385054  0.482118338  0.809094715  0.529349612  0.535366721
[1171]  0.600763577  0.643115897  1.160736439  1.243869115  1.039909733
[1176]  1.265533813  1.314772115  0.816837737  0.371663365  0.078117660
[1181]  0.038028574 -0.199174797 -0.222350494 -0.075236092 -0.450691798
[1186] -0.546160306 -0.688263956 -1.189157540 -1.854414851 -2.271821517
[1191] -2.038263336 -1.964612738 -1.937491435 -1.811085351 -1.645016790
[1196] -1.865910615 -1.942351721 -2.006736459 -1.482579814 -1.294963202
[1201] -0.900581881 -0.253489727 -0.250901033 -0.242310637  0.058500284
[1206]  0.198701858  0.275582710  0.320378046  0.398574435  0.222563985
[1211] -0.044224072  0.080510401  0.422476755 -0.202521753 -0.180611504
[1216] -0.422551555 -0.678481274 -0.770484867 -1.025140761 -1.074682338
[1221] -1.365286203 -1.183103290 -1.235697858 -0.861159989 -1.177501130
[1226] -0.202521753 -0.220776949  0.088131045  0.171094688  0.219105789
[1231]  0.214611297  0.185036367  0.507454721  0.793616316  0.578347816
[1236]  0.429669085  0.586577051  0.266383612  0.492159700  0.178251503
[1241]  0.130151268 -0.076751211  0.255258905  0.518185116  0.365910349
[1246]  0.332381741  0.664219801  0.334443989  0.268632728  0.215415638
[1251]  0.040298443  0.238331809  0.222273963  0.331327410  0.052020863
[1256] -0.137701483 -0.200267140 -0.216707038 -0.355510016 -0.226326018
[1261] -0.028799059 -0.314651297 -0.311149201 -0.402524786 -0.238339510
[1266] -0.454223935 -0.303645711 -0.262632263 -0.091386854 -0.227688814
[1271] -0.194500045 -0.638968099 -0.654431437 -0.487942410 -0.763010457
[1276] -1.003327845 -1.272160862 -0.923514350 -1.045464565 -0.939340659
[1281] -0.995093230 -1.161139739 -0.967347906 -0.564904136 -0.654431437
[1286] -0.732588688 -0.833299986 -0.302390943 -0.013150701 -0.311396418
[1291] -0.141055277  0.018461993 -0.134938968  0.002928473 -0.409180007
[1296] -0.078198092 -0.028799059  0.419287536  1.114724097  0.769041178
[1301]  0.519113757  0.535366721  0.316230318  0.101749180 -0.156715025
[1306] -0.436342550 -0.183766047 -0.226326018 -0.264693234 -0.844718231
[1311] -1.285161242 -1.534037213 -1.343811847 -1.178563488 -1.136921684
[1316] -0.835231675 -0.396251655 -0.337506570 -0.376978012 -0.332131680
[1321]  0.032738552  0.460061915  0.913896872  1.229656856  1.010434796
[1326]  0.821021756  0.814163522  0.768046677  0.627223036  0.211582210
[1331]  0.181189887  0.345024555  0.350682876  0.256190017 -0.130404698
[1336] -0.212270485 -0.146216816 -0.188972832 -0.161379081 -0.241810467
[1341]  0.061045547  0.442199497  0.342199859 -0.131100923 -0.398024725
[1346] -0.386006461 -0.401521452 -0.382498018 -0.279282930  0.086480238
[1351]  0.194287493  0.028872892 -0.385363627 -0.051980404 -0.001288080
[1356]  0.038188136  0.032738552  0.235802828  0.703028286  0.588800260
[1361]  0.488406192  0.280317583  0.133316080  0.174625469  0.169925834
[1366]  0.200600434  0.245593876  0.588377577  0.514783172  0.195028448
[1371] -0.040032447  0.038064123 -0.074565831 -0.168568901 -0.202026690
[1376] -0.179345076 -0.069610796 -0.370451897 -0.430648003 -0.332131680
[1381] -0.582637557 -0.457361625 -0.461769619 -0.522685398 -0.381641480
[1386] -0.229780694 -0.181702886 -0.168934178 -0.124050940  0.200600434
[1391]  0.116785899  0.175735497  0.227607654  0.317351587  0.261208391
[1396]  0.148211351 -0.054094121 -0.229780694 -0.405264732 -0.158523279
[1401] -0.069610796 -0.403397223 -0.398446008 -0.871740555 -0.900581881
[1406] -1.364591571 -1.124499462 -0.672886163 -0.484000030 -0.321598384
[1411] -0.252836200 -0.283454060 -0.320035455 -0.260634141 -0.140830055
[1416]  0.112252099  0.566064514  0.877999306  0.522283783  0.218305041
[1421]  0.273453238  0.372135272  0.671896892  0.622294100  0.790543465
[1426]  0.848525194  1.039909733  1.159728151  1.171184356  0.837224927
[1431]  1.004269123  1.279723777  1.112793346  1.096474825  1.383230040
[1436]  1.517631361  1.465601241  1.496449954  1.243855697  1.170308717
[1441]  0.925033912  0.939160875  0.572490590  0.288398731  0.201802253
[1446]  0.055874341 -0.374779026 -0.470850231 -0.733780543 -0.710886940
[1451] -0.215968041 -0.120520356 -0.767250390 -0.600071954 -0.491893703
[1456] -0.352457865 -0.115509251 -0.229780694 -0.090245766 -0.023181600
[1461]  0.267918091  0.277472863 -0.591657974 -0.469679040  0.135301237
[1466] -0.345232081 -0.180611504 -0.362471249 -0.156452671  0.015066479
[1471] -0.191864788 -0.168934178 -0.320035455 -0.227688814  0.299263866
[1476]  0.175735497 -0.346743382  0.235802828 -0.140446059  0.138197966
[1481] -0.361169770 -0.515435729 -0.425588536 -0.408384841 -0.113162911
[1486] -0.051980404 -0.108628060  0.006446438  0.863496301  0.888192901
[1491]  1.084600013  1.079456091  1.573406819  1.647380963  1.627115691
[1496]  1.746671126  1.520041384  1.496449954  1.200919704  1.085664188
[1501]  0.812214958  1.092064799  1.616792160  1.500018232  1.491519979
[1506]  1.463745584  1.505172866  1.528042260  1.552705470  1.496449954
[1511]  1.555141641  1.646434195  1.642972707  1.846390821  1.717205772
[1516]  1.620178844  1.716708789  1.759602584  1.728734712  1.902834602
[1521]  1.977338586  2.111429386  2.081107546  1.593531364  1.314772115
[1526]  0.592578649  0.642780118  0.618840413  0.068736139 -0.005337452
[1531]  0.123154178  0.216269063  0.518342750  0.156673332  0.170455889
[1536]  0.260380026  0.196838848  0.449868320  0.271249752  0.398545958
[1541]  0.989963086  1.065868928  0.986915858  1.132428121  0.997416009
[1546]  0.925397623  1.243855697  1.434822872  1.786560466  1.652712518
[1551]  1.405923574  1.620178844  1.655293659  1.749400619  1.515334768
[1556]  1.319824292  1.236952639  1.309759769  0.696421795  0.937536261
[1561]  0.801958690  0.979935255  1.526419909  1.179589934  1.092321636
[1566]  1.106676790  1.495010964  1.663383939  1.846682243  2.023575182
[1571]  2.682211438  2.535201754  2.186554937  2.366264161  1.707164411
[1576]  1.900553604  1.860010758  1.586169170  1.535658572  1.392700581
[1581]  1.193400525  1.529395280  1.039909733  0.884633430  1.130159282
[1586]  0.602772244  0.532325145  0.538733338  0.498642047  0.780213893
[1591]  0.458496948  0.434897929  0.355022320 -0.008053302  0.063115909
[1596]  0.048768702 -0.121105475  0.398900346  0.873731427  0.708960872
[1601]  0.846661116  0.708800135  0.651573088  0.955442848  1.487377298
[1606]  1.430559300  1.480003654  1.678175894  1.704510318  1.652712518
[1611]  1.375799490  1.490004848  1.583642674  1.749400619  1.931972754
[1616]  1.913245500  1.803130128  1.902775650  1.372663673  1.159728151
[1621]  1.232721967  0.725095383  0.753235092  0.688934103  0.815953551
[1626]  0.596578514  0.610925479  0.601472303  0.921199809  0.958342950
[1631]  1.007707739  1.011600224  0.607089588  1.051290419  1.024351846
[1636]  1.239670240  1.266331170  1.524957377  1.230801509  1.382289682
[1641]  1.291392782  1.309759769  1.651747623  1.985012313  2.145529863
[1646]  2.091037099  2.299604725  1.930593757  1.982841018  1.708592756
[1651]  1.952296559  2.027765382  1.716025899  2.078484060  1.705417614
[1656]  1.022180791  0.935290180  1.132839179  1.054475930  1.279723777
[1661]  1.061614071  1.443341653  1.393391942  1.257358902  1.443825183
[1666]  1.123069584  1.533673645  2.069656842  1.837841808  1.112451989
[1671]  1.064517291  1.069442707  1.266331170  1.514755411  1.647439495
[1676]  2.194339757  2.499963961  2.111429386  2.134777537  2.069656842
[1681]  2.176298669  2.529361679  2.209232474  2.200955134  1.941897598
[1686]  1.392331825  1.261287215  0.934621051  1.051856153  1.617249485
[1691]  1.179451708  0.958697394  0.781446153  0.358125966  0.381704726
[1696]  0.388532574  0.611236452  0.821021756  0.824325424  0.611883201
[1701]  0.692551208  0.650853233  0.674953799  0.387346820  0.340426607
[1706]  0.582385054  0.421870171  0.358492421  0.345104223  0.280317583
[1711]  0.631249284  0.539006913  0.746991351  0.925397623  1.361929675
[1716]  1.794562122  2.196811206  2.672072008  2.902086400  3.402561250
[1721]  3.579634393  3.504138689  3.080267693  3.412414868  3.098805535
[1726]  2.726408819  2.102575542  1.910948350  1.848098077  1.713874088
[1731]  1.566585354  0.999349017  1.112793346  1.106676790  1.108858683
[1736]  1.215715308  1.236952639  1.309759769  1.469269656  1.434822872
[1741]  0.822471227  0.511029890  0.451994255  0.789067946  0.836425261
[1746]  0.739406031  0.793839718  1.038730035  1.389385040  1.353686871
[1751]  1.630279627  1.614692497  1.499384948  1.489615000  1.526419909
[1756]  1.359830852  0.949019666  1.004657135  1.129182487  0.903388356
[1761]  0.681663179  0.628889682  0.267061872  0.112252099  0.350682876
[1766]  0.582385054  0.793400537  1.029389170  1.419868995  1.371927894
[1771]  1.007239662  1.299002495  1.716025899  1.814921446  2.134777537
[1776]  2.535201754  2.607061946  1.856584416  1.918032997  1.590138691
[1781]  1.552935109  1.657582929  1.830353733  1.913245500  1.803130128
[1786]  1.858848548  1.662481621  1.455984004  1.304515846  1.530389379
[1791]  1.114724097  1.099482860  0.795481841  0.657790307  0.864973032
[1796]  0.778457576  0.866759666  1.068160706  0.696421795  0.831730599
[1801]  1.078877939  1.662906113  1.968239804  2.160901596  2.330860087
[1806]  2.473740171  2.246991720  2.111052569  2.216875216  2.298119571
[1811]  2.832487411  2.810296475  2.607061946  2.213360238  2.128901584
[1816]  2.010700832  2.208029827  2.249296929  2.643305903

STI documentation built on May 2, 2019, 7:16 a.m.