diff --git a/categories/data-analytics/index.html b/categories/data-analytics/index.html index 3437e6d..9df799c 100644 --- a/categories/data-analytics/index.html +++ b/categories/data-analytics/index.html @@ -231,6 +231,108 @@

Data Analytics

+
+ +

ChatGPT python code for distribution fitting

+ + + +
+ + +
+ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + [Read More] + +
+ + +
+ + Data Analytics  + + Python  + +
+ + +
+ +
+ +

Copula Example

+ + + +
+ + +
+ + Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn) +Exercise 1 We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. +returns <- read.csv("returns_00_17.csv") hist(returns$Apple) hist(returns$Microsoft) Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. + [Read More] + +
+ + +
+ + math  + + Data Analytics  + + R  + +
+ + +
+

Random Number Generator

diff --git a/categories/data-analytics/index.xml b/categories/data-analytics/index.xml index 5e52128..119d803 100644 --- a/categories/data-analytics/index.xml +++ b/categories/data-analytics/index.xml @@ -5,7 +5,27 @@ https://www.codelooper.com/categories/data-analytics/ Recent content in Data Analytics on Teddy's online desktop Hugo -- gohugo.io - Wed, 08 Nov 2023 00:00:00 +0000 + Tue, 12 Dec 2023 00:00:00 +0000 + + ChatGPT python code for distribution fitting + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + Tue, 12 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + + + + Copula Example + https://www.codelooper.com/post/copula-example/ + Fri, 08 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/copula-example/ + Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn) +Exercise 1 We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. +returns &lt;- read.csv(&quot;returns_00_17.csv&quot;) hist(returns$Apple) hist(returns$Microsoft) Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. + + Random Number Generator https://www.codelooper.com/post/random-number-generator-20231108/ diff --git a/categories/index.html b/categories/index.html index 3f6d3e8..034fc78 100644 --- a/categories/index.html +++ b/categories/index.html @@ -239,7 +239,7 @@

Categories

programming - 10 + 11

@@ -249,6 +249,8 @@

View all + + -
+

ChatGPT python code for distribution fitting

+ + + +
+ + +
+ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + [Read More] + +
+ + +
+ + Data Analytics  + + Python  + +
+ + +
+

Coursera - introduction to tensorflow

diff --git a/categories/ml/index.xml b/categories/ml/index.xml index 2a12789..e81cf86 100644 --- a/categories/ml/index.xml +++ b/categories/ml/index.xml @@ -5,7 +5,16 @@ https://www.codelooper.com/categories/ml/ Recent content in ML on Teddy's online desktop Hugo -- gohugo.io - Wed, 03 Aug 2022 00:00:00 +0000 + Tue, 12 Dec 2023 00:00:00 +0000 + + ChatGPT python code for distribution fitting + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + Tue, 12 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + + Coursera - introduction to tensorflow https://www.codelooper.com/post/2022-08-03-coursera-introduction-to-tensorflow/ diff --git a/categories/programming/index.html b/categories/programming/index.html index 536bde4..f3e068b 100644 --- a/categories/programming/index.html +++ b/categories/programming/index.html @@ -231,6 +231,55 @@

Programming

+
+ +

ChatGPT python code for distribution fitting

+ + + +
+ + +
+ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + [Read More] + +
+ + +
+ + Data Analytics  + + Python  + +
+ + +
+
-
- -
- -

Ideas from programming

- - - -
- - -
- -
    -
  • Version Control and GitHub + Main/Branches, Push/Pull/Merge
  • -
  • Functions/Modules -
      -
    • Methods should be deep.
    • -
    • Write the interface first
    • -
    -
  • -
  • Try to minimize exceptions -
      -
    • define them away
    • -
    -
  • -
  • Be strategic + Invest in building the future/don’t introduce bad code today
  • -
  • Write the unit test before the useful code
  • -
  • Make sure you do input validation
  • -
- - -
- - -
- - Programming  - -
- -
+ +

diff --git a/categories/programming/index.xml b/categories/programming/index.xml index 741bca1..8ece1db 100644 --- a/categories/programming/index.xml +++ b/categories/programming/index.xml @@ -5,7 +5,16 @@ https://www.codelooper.com/categories/programming/ Recent content in Programming on Teddy's online desktop Hugo -- gohugo.io - Sat, 06 Aug 2022 00:00:00 +0000 + Tue, 12 Dec 2023 00:00:00 +0000 + + ChatGPT python code for distribution fitting + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + Tue, 12 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + + Coursera Guided Project - Predicting Diabetes https://www.codelooper.com/post/2022-08-06-coursera-guided-project-predicting-diabetes/ diff --git a/categories/programming/page/2/index.html b/categories/programming/page/2/index.html new file mode 100644 index 0000000..2f9efb9 --- /dev/null +++ b/categories/programming/page/2/index.html @@ -0,0 +1,439 @@ + + + + + + + + + + Programming - Teddy's online desktop + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+ +

Programming

+ + +
+ + + +
+
+
+
+
+ +
+ + + +
+
+
+ +
+ +
+ +

Ideas from programming

+ + + +
+ + +
+ +
    +
  • Version Control and GitHub + Main/Branches, Push/Pull/Merge
  • +
  • Functions/Modules +
      +
    • Methods should be deep.
    • +
    • Write the interface first
    • +
    +
  • +
  • Try to minimize exceptions +
      +
    • define them away
    • +
    +
  • +
  • Be strategic + Invest in building the future/don’t introduce bad code today
  • +
  • Write the unit test before the useful code
  • +
  • Make sure you do input validation
  • +
+ + +
+ + +
+ + Programming  + +
+ + +
+ +
+ + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/index.html b/index.html index f86dc16..70da3bc 100644 --- a/index.html +++ b/index.html @@ -237,6 +237,108 @@

Teddy's online desktop

+
+ +

ChatGPT python code for distribution fitting

+ + + +
+ + +
+ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + [Read More] + +
+ + +
+ + Data Analytics  + + Python  + +
+ + +
+ +
+ +

Copula Example

+ + + +
+ + +
+ + Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn) +Exercise 1 We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. +returns <- read.csv("returns_00_17.csv") hist(returns$Apple) hist(returns$Microsoft) Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. + [Read More] + +
+ + +
+ + math  + + Data Analytics  + + R  + +
+ + +
+
- - -
- -

Python - Handling Exceptions

- - - -
- - -
- - From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 -Try, except, finally -import time as time def causeError(): start = time.time() #set start timer try: #delay run by 0.5 secs time.sleep(0.5) return 1/0 except Exception: print('There was some sort of error!') finally: print(f'Function took {time.time() - start} seconds to execute') causeError() ## There was some sort of error! ## Function took 0.5048558712005615 seconds to execute Custom Decorators *args **kwargs are multiple arguments or string arguments. - [Read More] - -
- - -
- - Python  - -
- - -
- -
- -

Python - Multithreading/Multiprocessing

- - - -
- - -
- - From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 -import threading import time Threads -def longSquare(num): time.sleep(1) return num**2 [longSquare(n) for n in range(0, 5)] ## [0, 1, 4, 9, 16] t1 = threading.Thread(target=longSquare, args=(1,)) #args is tuple t2 = threading.Thread(target=longSquare, args=(2,)) t1.start() t2.start() t1.join() t2.join() def longSquare(num, results): time.sleep(1) results[num] = num**2 results = {} t1 = threading.Thread(target=longSquare, args=(1, results)) #args are tuples t2 = threading.Thread(target=longSquare, args=(2, results)) t1. - [Read More] - -
- - -
- - Python  - -
- -
diff --git a/index.xml b/index.xml index a34c3e2..d41fe5c 100644 --- a/index.xml +++ b/index.xml @@ -5,7 +5,27 @@ https://www.codelooper.com/ Recent content on Teddy's online desktop Hugo -- gohugo.io - Wed, 08 Nov 2023 00:00:00 +0000 + Tue, 12 Dec 2023 00:00:00 +0000 + + ChatGPT python code for distribution fitting + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + Tue, 12 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + + + + Copula Example + https://www.codelooper.com/post/copula-example/ + Fri, 08 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/copula-example/ + Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn) +Exercise 1 We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. +returns &lt;- read.csv(&quot;returns_00_17.csv&quot;) hist(returns$Apple) hist(returns$Microsoft) Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. + + Random Number Generator https://www.codelooper.com/post/random-number-generator-20231108/ diff --git a/page/2/index.html b/page/2/index.html index 3f37ea4..77744c3 100644 --- a/page/2/index.html +++ b/page/2/index.html @@ -238,8 +238,8 @@

Teddy's online desktop

- -

Python - opening reading writing files

+
+

Python - Handling Exceptions

@@ -252,10 +252,10 @@

Python - opening reading writing files

 Posted on August 3, 2022 -  |  2 minutes +  |  1 minutes -  |  362 words +  |  205 words @@ -270,10 +270,9 @@

Python - opening reading writing files

From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 -reading files -f = open('some_file.txt','r') print(f) #gets file type, need to read the file f.readline() f.readlines() #puts lines into list of strings for line in f.readlines(): print(line.strip()) # strips leading and trailing spaces writing files -f = open('somefiles.txt','w') # creates a file f.write('Line 1\n') f.write('Line 2\n') f.close() # python doesn't write until you close or run out of buffer and will overwrite existing text appending files - [Read More] +Try, except, finally +import time as time def causeError(): start = time.time() #set start timer try: #delay run by 0.5 secs time.sleep(0.5) return 1/0 except Exception: print('There was some sort of error!') finally: print(f'Function took {time.time() - start} seconds to execute') causeError() ## There was some sort of error! ## Function took 0.5048558712005615 seconds to execute Custom Decorators *args **kwargs are multiple arguments or string arguments. + [Read More]
@@ -288,8 +287,8 @@

Python - opening reading writing files

- -

Python Neural Network Basics

+
+

Python - Multithreading/Multiprocessing

@@ -302,10 +301,10 @@

Python Neural Network Basics

 Posted on August 3, 2022 -  |  1 minutes +  |  3 minutes -  |  177 words +  |  589 words @@ -319,10 +318,10 @@

Python Neural Network Basics

- From https://iamtrask.github.io/2015/07/12/basic-python-network/ -import numpy as np sigmoid function def nonlin(x,deriv=False): if(deriv==True): return x*(1-x) return 1/(1+np.exp(-x)) input dataset X = np.array([ [0,0,1], [0,1,1], [1,0,1], [1,1,1] ]) output dataset y = np.array([[0,0,1,1]]).T seed random numbers to make calculation deterministic (just a good practice) -np.random.seed(1) initialize weights randomly with mean 0 syn0 = 2*np.random.random((3,1)) - 1 print(syn0) ## [[-0.16595599] ## [ 0.44064899] ## [-0.99977125]] variables l0 is input layer l1 is hidden layer l1_error is the loss function l1_delta is the gradient descent function for calculating the back-propagation syn0 are synapses, weights between l0 and l1, and also how the weights are updated are shown. - [Read More] + From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 +import threading import time Threads +def longSquare(num): time.sleep(1) return num**2 [longSquare(n) for n in range(0, 5)] ## [0, 1, 4, 9, 16] t1 = threading.Thread(target=longSquare, args=(1,)) #args is tuple t2 = threading.Thread(target=longSquare, args=(2,)) t1.start() t2.start() t1.join() t2.join() def longSquare(num, results): time.sleep(1) results[num] = num**2 results = {} t1 = threading.Thread(target=longSquare, args=(1, results)) #args are tuples t2 = threading.Thread(target=longSquare, args=(2, results)) t1. + [Read More]
@@ -337,8 +336,8 @@

Python Neural Network Basics

- -

Codecademy Pandas Continued...

+
+

Python - opening reading writing files

@@ -348,13 +347,13 @@

Codecademy Pandas Continued...

- - - - + From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 +reading files +f = open('some_file.txt','r') print(f) #gets file type, need to read the file f.readline() f.readlines() #puts lines into list of strings for line in f.readlines(): print(line.strip()) # strips leading and trailing spaces writing files +f = open('somefiles.txt','w') # creates a file f.write('Line 1\n') f.write('Line 2\n') f.close() # python doesn't write until you close or run out of buffer and will overwrite existing text appending files + [Read More]
@@ -386,8 +386,8 @@

Codecademy Pandas Continued...

- -

Codecademy - Pandas Lesson

+
+

Python Neural Network Basics

@@ -397,13 +397,13 @@

Codecademy - Pandas Lesson

- You’re getting ready to staff the clinic for March this year. You want to know how many visits took place in March last year, to help you prepare. -Write a command that will produce a Series made up of the March data from df from all four clinic sites and save it to the variable march. -#import /;../,codecademylib3 import pandas as pd df = pd.DataFrame([ ['January', 100, 100, 23, 100], ['February', 51, 45, 145, 45], ['March', 81, 96, 65, 96], ['April', 80, 80, 54, 180], ['May', 51, 54, 54, 154], ['June', 112, 109, 79, 129]], columns=['month', 'clinic_east', 'clinic_north', 'clinic_south', 'clinic_west']) print(df) ## month clinic_east clinic_north clinic_south clinic_west ## 0 January 100 100 23 100 ## 1 February 51 45 145 45 ## 2 March 81 96 65 96 ## 3 April 80 80 54 180 ## 4 May 51 54 54 154 ## 5 June 112 109 79 129 # integer location within dataframe # locations are zero indexed and doesn't include the ending integer march = df. - [Read More] + From https://iamtrask.github.io/2015/07/12/basic-python-network/ +import numpy as np sigmoid function def nonlin(x,deriv=False): if(deriv==True): return x*(1-x) return 1/(1+np.exp(-x)) input dataset X = np.array([ [0,0,1], [0,1,1], [1,0,1], [1,1,1] ]) output dataset y = np.array([[0,0,1,1]]).T seed random numbers to make calculation deterministic (just a good practice) +np.random.seed(1) initialize weights randomly with mean 0 syn0 = 2*np.random.random((3,1)) - 1 print(syn0) ## [[-0.16595599] ## [ 0.44064899] ## [-0.99977125]] variables l0 is input layer l1 is hidden layer l1_error is the loss function l1_delta is the gradient descent function for calculating the back-propagation syn0 are synapses, weights between l0 and l1, and also how the weights are updated are shown. + [Read More]
@@ -435,8 +435,8 @@

Codecademy - Pandas Lesson

- -

Macbook air m1 power consumption

+
+

Codecademy Pandas Continued...

@@ -446,13 +446,13 @@

Macbook air m1 power consumption

@@ -490,8 +484,8 @@

Macbook air m1 power consumption

- -

Datacamp's tidyverse course using gapminder dataset

+
+

Codecademy - Pandas Lesson

@@ -501,13 +495,13 @@

Datacamp's tidyverse course using gapminder dataset -  Posted on July 19, 2022 +  Posted on July 28, 2022 -  |  6 minutes +  |  25 minutes -  |  1212 words +  |  5258 words @@ -521,16 +515,17 @@

Datacamp's tidyverse course using gapminder dataset
- Datacamp’s Tidyverse course using Gapminder dataset -library(gapminder) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union head(gapminder) ## # A tibble: 6 × 6 ## country continent year lifeExp pop gdpPercap ## <fct> <fct> <int> <dbl> <int> <dbl> ## 1 Afghanistan Asia 1952 28.8 8425333 779. ## 2 Afghanistan Asia 1957 30. - [Read More] + You’re getting ready to staff the clinic for March this year. You want to know how many visits took place in March last year, to help you prepare. +Write a command that will produce a Series made up of the March data from df from all four clinic sites and save it to the variable march. +#import /;../,codecademylib3 import pandas as pd df = pd.DataFrame([ ['January', 100, 100, 23, 100], ['February', 51, 45, 145, 45], ['March', 81, 96, 65, 96], ['April', 80, 80, 54, 180], ['May', 51, 54, 54, 154], ['June', 112, 109, 79, 129]], columns=['month', 'clinic_east', 'clinic_north', 'clinic_south', 'clinic_west']) print(df) ## month clinic_east clinic_north clinic_south clinic_west ## 0 January 100 100 23 100 ## 1 February 51 45 145 45 ## 2 March 81 96 65 96 ## 3 April 80 80 54 180 ## 4 May 51 54 54 154 ## 5 June 112 109 79 129 # integer location within dataframe # locations are zero indexed and doesn't include the ending integer march = df. + [Read More]
- R  + Python 
@@ -538,8 +533,8 @@

Datacamp's tidyverse course using gapminder dataset
- -

Global size of agriculture insurance market in 2020 and beyond

+
+

Macbook air m1 power consumption

@@ -549,13 +544,13 @@

Global size of agriculture insurance market in 2020 and b

Global size of agriculture insurance market in 2020 and b

- People often ask me how large is the world wide agriculture insurance market. U.S., Canada, China, and India have large government subsidized programs and provide reports on premiums. However, the reports do not contain privately sold products and premiums. These are mostly hail and top-up programs that complement the government subsidized crop and livestock insurance programs. -Roman Shynkarenko provided the post below on Linkedin for the agriculture insurance market in 2020 according to Allianz (32bn world wide in 2020). - [Read More] + + + +

I found that rsessions-arm64 was running the cpu at 100% and using almost 7 watts (it’s around 20 mW when idle), and ran my laptop battery down very quickly. A restart seem to have solved the problem.

+

Using command “sudo powermetrics” in terminal opens up the powermetrics program that’s included in osx and provides data on power usage as shown in the following screenshot:

+
+ +

powermetrics

+
+
@@ -588,8 +588,8 @@

Global size of agriculture insurance market in 2020 and b

- -

Google Data Analytics Certificate

+
+

Datacamp's tidyverse course using gapminder dataset

@@ -599,13 +599,13 @@

Google Data Analytics Certificate

- I’ve finally completed the Coursera Google Data Analytics Certificate. -I think the course is great for beginners in data analytics. For me it was a great refresher on SQL and R but the other sections were not all that useful. The course did motivate me to learn R (again) and this blog site is probably a result of that. -I think the course could use more on statistical thinking and spending more time on probability since data analysts could really use that in their work. - [Read More] + Datacamp’s Tidyverse course using Gapminder dataset +library(gapminder) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union head(gapminder) ## # A tibble: 6 × 6 ## country continent year lifeExp pop gdpPercap ## <fct> <fct> <int> <dbl> <int> <dbl> ## 1 Afghanistan Asia 1952 28.8 8425333 779. ## 2 Afghanistan Asia 1957 30. + [Read More]
- Education  - - Data Analytics  - R  - Google  -
- -

Ideas from programming

+
+

Global size of agriculture insurance market in 2020 and beyond

@@ -657,10 +650,10 @@

Ideas from programming

 Posted on July 18, 2022 -  |  1 minutes +  |  5 minutes -  |  49 words +  |  1025 words @@ -674,31 +667,18 @@

Ideas from programming

-
    -
  • Version Control and GitHub + Main/Branches, Push/Pull/Merge
  • -
  • Functions/Modules -
      -
    • Methods should be deep.
    • -
    • Write the interface first
    • -
    -
  • -
  • Try to minimize exceptions -
      -
    • define them away
    • -
    -
  • -
  • Be strategic + Invest in building the future/don’t introduce bad code today
  • -
  • Write the unit test before the useful code
  • -
  • Make sure you do input validation
  • -
- + People often ask me how large is the world wide agriculture insurance market. U.S., Canada, China, and India have large government subsidized programs and provide reports on premiums. However, the reports do not contain privately sold products and premiums. These are mostly hail and top-up programs that complement the government subsidized crop and livestock insurance programs. +Roman Shynkarenko provided the post below on Linkedin for the agriculture insurance market in 2020 according to Allianz (32bn world wide in 2020). +
[Read More]
@@ -706,8 +686,8 @@

Ideas from programming

- -

Running Shiny R within blogdown

+
+

Google Data Analytics Certificate

@@ -723,7 +703,7 @@

Running Shiny R within blogdown

 |  1 minutes -  |  22 words +  |  174 words @@ -737,22 +717,23 @@

Running Shiny R within blogdown

- - - -

I just learned that I could embed the R Shiny app into blogdown from this post. So here’s an attempt at that.

- - + I’ve finally completed the Coursera Google Data Analytics Certificate. +I think the course is great for beginners in data analytics. For me it was a great refresher on SQL and R but the other sections were not all that useful. The course did motivate me to learn R (again) and this blog site is probably a result of that. +I think the course could use more on statistical thinking and spending more time on probability since data analysts could really use that in their work. + [Read More]
+ Education  + + Data Analytics  + R  - R Shiny  + Google 
diff --git a/page/3/index.html b/page/3/index.html index 1093228..869f6e3 100644 --- a/page/3/index.html +++ b/page/3/index.html @@ -237,6 +237,123 @@

Teddy's online desktop

+
+ +

Ideas from programming

+ + + +
+ + +
+ +
    +
  • Version Control and GitHub + Main/Branches, Push/Pull/Merge
  • +
  • Functions/Modules +
      +
    • Methods should be deep.
    • +
    • Write the interface first
    • +
    +
  • +
  • Try to minimize exceptions +
      +
    • define them away
    • +
    +
  • +
  • Be strategic + Invest in building the future/don’t introduce bad code today
  • +
  • Write the unit test before the useful code
  • +
  • Make sure you do input validation
  • +
+ + +
+ + +
+ + Programming  + +
+ + +
+ +
+ +

Running Shiny R within blogdown

+ + + +
+ + +
+ + + + +

I just learned that I could embed the R Shiny app into blogdown from this post. So here’s an attempt at that.

+ + + +
+ + +
+ + R  + + R Shiny  + +
+ + +
+

Cat XL pricing using rate on line (ROL) curves

diff --git a/post/2017-03-05-math-sample/index.html b/post/2017-03-05-math-sample/index.html index db76c8f..862236f 100644 --- a/post/2017-03-05-math-sample/index.html +++ b/post/2017-03-05-math-sample/index.html @@ -414,6 +414,8 @@

See also

diff --git a/post/2022-07-14-blogdown-github/2022-07-14-blogdown-github/index.html b/post/2022-07-14-blogdown-github/2022-07-14-blogdown-github/index.html index 612b6a5..6f68f7d 100644 --- a/post/2022-07-14-blogdown-github/2022-07-14-blogdown-github/index.html +++ b/post/2022-07-14-blogdown-github/2022-07-14-blogdown-github/index.html @@ -653,6 +653,8 @@

See also

diff --git a/post/2022-07-15-quarto/index.html b/post/2022-07-15-quarto/index.html index c275b36..ee6fd3e 100644 --- a/post/2022-07-15-quarto/index.html +++ b/post/2022-07-15-quarto/index.html @@ -403,16 +403,16 @@

See also

diff --git a/post/2022-07-19-datacamp-s-tidyverse-course-using-gapminder-dataset/index.html b/post/2022-07-19-datacamp-s-tidyverse-course-using-gapminder-dataset/index.html index 88b1f42..4863fdb 100644 --- a/post/2022-07-19-datacamp-s-tidyverse-course-using-gapminder-dataset/index.html +++ b/post/2022-07-19-datacamp-s-tidyverse-course-using-gapminder-dataset/index.html @@ -581,6 +581,8 @@

See also

diff --git a/post/2022-07-28-codecademy-pandas-lesson/index.html b/post/2022-07-28-codecademy-pandas-lesson/index.html index 8de03df..4a0750d 100644 --- a/post/2022-07-28-codecademy-pandas-lesson/index.html +++ b/post/2022-07-28-codecademy-pandas-lesson/index.html @@ -943,6 +943,8 @@

See also

diff --git a/post/2022-08-02-codecademy-pandas-continued/index.html b/post/2022-08-02-codecademy-pandas-continued/index.html index 1bd7691..63fde5e 100644 --- a/post/2022-08-02-codecademy-pandas-continued/index.html +++ b/post/2022-08-02-codecademy-pandas-continued/index.html @@ -376,6 +376,8 @@

See also

diff --git a/post/2022-08-03-coursera-introduction-to-tensorflow/index.html b/post/2022-08-03-coursera-introduction-to-tensorflow/index.html index 89081b9..f8f73c6 100644 --- a/post/2022-08-03-coursera-introduction-to-tensorflow/index.html +++ b/post/2022-08-03-coursera-introduction-to-tensorflow/index.html @@ -440,6 +440,8 @@

See also

diff --git a/post/2022-08-03-python-handling-exceptions/index.html b/post/2022-08-03-python-handling-exceptions/index.html index 33ac48c..063f370 100644 --- a/post/2022-08-03-python-handling-exceptions/index.html +++ b/post/2022-08-03-python-handling-exceptions/index.html @@ -458,6 +458,8 @@

See also

diff --git a/post/2022-08-03-python-multithreading-multiprocessing/index.html b/post/2022-08-03-python-multithreading-multiprocessing/index.html index 6dde33d..d6cf248 100644 --- a/post/2022-08-03-python-multithreading-multiprocessing/index.html +++ b/post/2022-08-03-python-multithreading-multiprocessing/index.html @@ -449,6 +449,8 @@

See also

diff --git a/post/2022-08-03-python-neural-network/index.html b/post/2022-08-03-python-neural-network/index.html index 8d8cb34..dd782c6 100644 --- a/post/2022-08-03-python-neural-network/index.html +++ b/post/2022-08-03-python-neural-network/index.html @@ -444,6 +444,8 @@

See also

diff --git a/post/2022-08-03-python-opening-reading-writing-files/index.html b/post/2022-08-03-python-opening-reading-writing-files/index.html index 2152da4..029e8fb 100644 --- a/post/2022-08-03-python-opening-reading-writing-files/index.html +++ b/post/2022-08-03-python-opening-reading-writing-files/index.html @@ -485,6 +485,8 @@

See also

diff --git a/post/2022-08-06-coursera-guided-project-predicting-diabetes/index.html b/post/2022-08-06-coursera-guided-project-predicting-diabetes/index.html index 2bdd9a1..adab2d9 100644 --- a/post/2022-08-06-coursera-guided-project-predicting-diabetes/index.html +++ b/post/2022-08-06-coursera-guided-project-predicting-diabetes/index.html @@ -802,6 +802,8 @@

See also

diff --git a/post/2023-07-19-ergodicity-and-insurance/Ergodicity.xlsx b/post/2023-07-19-ergodicity-and-insurance/Ergodicity.xlsx index c8711c3..b2c08fa 100644 Binary files a/post/2023-07-19-ergodicity-and-insurance/Ergodicity.xlsx and b/post/2023-07-19-ergodicity-and-insurance/Ergodicity.xlsx differ diff --git a/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en.Rmd b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en.Rmd new file mode 100644 index 0000000..4101239 --- /dev/null +++ b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en.Rmd @@ -0,0 +1,70 @@ +--- +title: ChatGPT python code for distribution fitting +author: Package Build +date: '2023-12-12' +slug: [] +categories: + - Data Analytics + - Programming + - ML +tags: + - Data Analytics + - Python +type: '' +subtitle: '' +image: '' +--- + +```{r setup, include=FALSE} +library(knitr) +library(reticulate) +knitr::knit_engines$set(python = reticulate::eng_python) +``` + +```{python} + +import numpy as np +import scipy.stats as stats +import matplotlib.pyplot as plt +from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r + +# Your data +data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, + 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, + 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, + 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, + 0.0601, 0.0794, 0.145, 0.1439, 0.0415, 0.0523, 0.0413, 0.0701, 0.1141, 0.055]) + +# Fit different distributions and compare them +distribution_names = ['norm', 'expon', 'lognorm', 'weibull_min', 'gamma', 'beta', 'gumbel_r'] +#distribution_names = ['expon','weibull_min','gumbel_r','lognorm'] +params = {} + +for distribution_name in distribution_names: + distribution = getattr(stats, distribution_name) + params[distribution_name] = distribution.fit(data) + +# Find the distribution with the lowest AIC value +best_fit_distribution = min(params, key=lambda k: stats.kstest(data, k, args=params[k])[0]) +best_params = params[best_fit_distribution] + +print(f"Best-fit distribution: {best_fit_distribution}") +print(f"Best-fit parameters: {best_params}") + +# Plot the histogram of the data +plt.hist(data, bins=20, density=True, alpha=0.6, color='g') + +# Plot the best-fit distribution +xmin, xmax = plt.xlim() +x = np.linspace(xmin, xmax, 100) +p = getattr(stats, best_fit_distribution).pdf(x, *best_params) +plt.plot(x, p, 'k', linewidth=2) + +plt.title(f"Fit results for {best_fit_distribution} distribution") +plt.show() + + +``` +```{r} + +``` diff --git a/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en_files/figure-html/unnamed-chunk-1-1.png b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en_files/figure-html/unnamed-chunk-1-1.png new file mode 100644 index 0000000..4cc4d1c Binary files /dev/null and b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.en_files/figure-html/unnamed-chunk-1-1.png differ diff --git a/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.html b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.html new file mode 100644 index 0000000..4f8a9a6 --- /dev/null +++ b/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/index.html @@ -0,0 +1,607 @@ + + + + + + + + + + ChatGPT python code for distribution fitting - Teddy's online desktop + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+ +

ChatGPT python code for distribution fitting

+ + + + + + + + +
+
+
+
+
+ +
+ + + +
+
+
+
+ + + +
import numpy as np
+import scipy.stats as stats
+import matplotlib.pyplot as plt
+from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r
+
+# Your data
+data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246,
+                 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238,
+                 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432,
+                 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839,
+                 0.0601, 0.0794, 0.145, 0.1439, 0.0415, 0.0523, 0.0413, 0.0701, 0.1141, 0.055])
+
+# Fit different distributions and compare them
+distribution_names = ['norm', 'expon', 'lognorm', 'weibull_min', 'gamma', 'beta', 'gumbel_r']
+#distribution_names = ['expon','weibull_min','gumbel_r','lognorm']
+params = {}
+
+for distribution_name in distribution_names:
+    distribution = getattr(stats, distribution_name)
+    params[distribution_name] = distribution.fit(data)
+
## /Users/twong/Library/r-miniconda-arm64/lib/python3.9/site-packages/scipy/stats/_continuous_distns.py:639: RuntimeWarning: invalid value encountered in sqrt
+##   sk = 2*(b-a)*np.sqrt(a + b + 1) / (a + b + 2) / np.sqrt(a*b)
+## /Users/twong/Library/r-miniconda-arm64/lib/python3.9/site-packages/scipy/optimize/minpack.py:175: RuntimeWarning: The iteration is not making good progress, as measured by the 
+##   improvement from the last ten iterations.
+##   warnings.warn(msg, RuntimeWarning)
+
# Find the distribution with the lowest AIC value
+best_fit_distribution = min(params, key=lambda k: stats.kstest(data, k, args=params[k])[0])
+best_params = params[best_fit_distribution]
+
+print(f"Best-fit distribution: {best_fit_distribution}")
+
## Best-fit distribution: expon
+
print(f"Best-fit parameters: {best_params}")
+
## Best-fit parameters: (0.02, 0.08315399999999998)
+
# Plot the histogram of the data
+plt.hist(data, bins=20, density=True, alpha=0.6, color='g')
+
+# Plot the best-fit distribution
+xmin, xmax = plt.xlim()
+x = np.linspace(xmin, xmax, 100)
+p = getattr(stats, best_fit_distribution).pdf(x, *best_params)
+plt.plot(x, p, 'k', linewidth=2)
+
+plt.title(f"Fit results for {best_fit_distribution} distribution")
+plt.show()
+

+ + + +
+ + Data Analytics  + + Python  + +
+ + + +
+
+ +
+ + + + + + + + +

See also

+ + + + +
+ + + + + + + + + +
+ +
+ + +
+ + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/post/copula-example/index.en.Rmd b/post/copula-example/index.en.Rmd new file mode 100644 index 0000000..f91f7b7 --- /dev/null +++ b/post/copula-example/index.en.Rmd @@ -0,0 +1,129 @@ +--- +title: Copula Example +author: Package Build +date: '2023-12-08' +slug: copula-example +categories: + - Data Analytics +tags: + - math + - Data Analytics + - R +type: '' +subtitle: '' +image: '' +--- + +Trying an introduction to copulas exercise, from ([R-excerises](https://www.r-exercises.com/2017/05/17/introduction-to-copulas-solutions-part-1-2/){.uri}), using the dataset () + +Exercise 1 We'll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. + +```{r} +returns <- read.csv("returns_00_17.csv") +hist(returns$Apple) +hist(returns$Microsoft) + +``` + +Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. Which of those three distributions is best suited to simulate the Apple return dataset and what are the parameter of this distribution? + +```{r} +library(fitdistrplus) + +apple.norm <- fitdist(returns$Apple,"norm") +plotdist(returns$Apple,"norm", para=list(mean=apple.norm$estimate[1],sd=apple.norm$estimate[2])) +``` + +```{r} +apple.norm$aic +apple.norm$estimate +``` + +Exercise 3 Repeat exercise 2 with the Microsoft return. + +```{r} +msft.norm <- fitdist(returns$Microsoft,"norm") +plotdist(returns$Microsoft,"norm", para=list(mean=msft.norm$estimate[1],sd=msft.norm$estimate[2])) + +``` + +```{r} +msft.norm$aic +msft.norm$estimate +``` + +```{r} +msft.log <- fitdist(returns$Microsoft,"logis") +plotdist(returns$Microsoft,"logis",para=list(location=msft.log$estimate[1],scale=msft.log$estimate[2])) +``` + +```{r} +msft.log$aic +``` + +Exercise 4 Plot the joint distribution of the Apple and Microsoft daily returns. Add the regression line to the plot and compute the correlation of both variables. + +```{r} +plot(returns$Apple,returns$Microsoft) +abline(lm(returns$Apple~returns$Microsoft),col="red") +``` + +```{r} +cor(returns$Apple,returns$Microsoft) +``` + +Exercise 5 Use the pobs() from the VineCopula() package to compute the pseudo-observations for both returns values, then use the BiCopSelect() function to select the copula which minimize the AIC on the dataset. Which copula is selected and what are his parameters. + +```{r} +#install.packages("VineCopula") +library(VineCopula) + +x.1 <- pobs(as.matrix(returns[,2:3]))[,1] +x.2 <- pobs(as.matrix(returns[,2:3]))[,2] + +apriori.copula <- BiCopSelect(x.1,x.2) + +summary(apriori.copula) +``` + +Learn more about MultiVariate analysis in the online course Case Studies in Data Mining with R. In this course you will work thru a case study related to multivariate analysis and how to work with forecasting in the S&P 500. + +Exercise 6 Use the appropriate function from the VineCopula() package to create a copula object with the parameter computed in the last exercise. Then, do a three dimensional plot and a contour plot of the copula. + +```{r} +set.seed(42) +bi.cop <- BiCop(20,apriori.copula$par,apriori.copula$par2) + +plot(bi.cop, type="contour",size=25,margins="norm") +plot(bi.cop, type="surface") + + + + +``` + +Exercise 7 Set the seed to 42 and generate a sample of 1000 points from this copula. Plot the sample and calculate the correlation of this sample. Does the correlation of the sample is similar to the correlation between the Apple and Microsoft returns? + +```{r} +#install.packages("copula") +library(copula) + +simCopula <- BiCopSim(1000,20,apriori.copula$par,apriori.copula$par2) +plot(simCopula) +``` + +```{r} +cor(simCopula[,1],simCopula[,2]) +``` + +Exercise 8 Create a distribution from the copula you selected and the margins you fitted in the exercise 2 and 3. + +```{r} +#t.cop <- tCopula(c(0.55,0.77), dim = 2, dispstr = "norm", df = 4,df.fixed = FALSE, df.min = 0.01) + +#mjd <- mvdc(copula=t.cop,margins=c("norm","norm"),paramMargins=list(list(mean=apple.norm$estimate[1], sd=apple.norm$estimate[2]),list(mean=msft.norm$estimate[1], sd=msft.norm$estimate[2]))) +``` + +Exercise 9 Generate 1000 points from the distribution of exercise 8 and plot those points, with the Apple and Microsoft returns, in the same plot. + +Exercise 10 Having made a model, let's make some crude estimation with it! Imagine that this model has been proven to be effective to describe the relation between the apple return and the Microsoft return for a considerable amound of time and there's a spike in the price of Apple stock. Suppose you have another model who describe the Apple stock and who lead you to believe that the daily return on this stock has a 90% chance to be between 0.038 and 0.045. Using only this information, compute the range containing the possible daily return of the Microsoft stock at the end of the day and the mean of the possible values. diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-1.png new file mode 100644 index 0000000..af07d9a Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-2.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-2.png new file mode 100644 index 0000000..c396307 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-1-2.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-1.png new file mode 100644 index 0000000..2c86b5e Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-2.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-2.png new file mode 100644 index 0000000..8a61705 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-11-2.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-12-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-12-1.png new file mode 100644 index 0000000..73f2882 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-12-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-2-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-2-1.png new file mode 100644 index 0000000..7e81462 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-2-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-4-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-4-1.png new file mode 100644 index 0000000..2457391 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-4-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-6-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-6-1.png new file mode 100644 index 0000000..95cd619 Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-6-1.png differ diff --git a/post/copula-example/index.en_files/figure-html/unnamed-chunk-8-1.png b/post/copula-example/index.en_files/figure-html/unnamed-chunk-8-1.png new file mode 100644 index 0000000..bb1910e Binary files /dev/null and b/post/copula-example/index.en_files/figure-html/unnamed-chunk-8-1.png differ diff --git a/post/copula-example/index.html b/post/copula-example/index.html new file mode 100644 index 0000000..3bb1202 --- /dev/null +++ b/post/copula-example/index.html @@ -0,0 +1,677 @@ + + + + + + + + + + Copula Example - Teddy's online desktop + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+ +

Copula Example

+ + + + + + + + +
+
+
+
+
+ +
+ + + +
+
+
+
+ + + +

Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn)

+

Exercise 1 +We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions.

+
returns <- read.csv("returns_00_17.csv")
+hist(returns$Apple)
+

+
hist(returns$Microsoft)
+

+

Exercise 2 +Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. Which of those three distributions is best suited to simulate the Apple return dataset and what are the parameter of this distribution?

+
library(fitdistrplus)
+
## Loading required package: MASS
+
## Loading required package: survival
+
apple.norm <- fitdist(returns$Apple,"norm")
+plotdist(returns$Apple,"norm", para=list(mean=apple.norm$estimate[1],sd=apple.norm$estimate[2]))
+

+
apple.norm$aic
+
## [1] -19973.54
+
apple.norm$estimate
+
##       mean         sd 
+## 0.00113756 0.01785252
+

Exercise 3 +Repeat exercise 2 with the Microsoft return.

+
msft.norm <- fitdist(returns$Microsoft,"norm")
+plotdist(returns$Microsoft,"norm", para=list(mean=msft.norm$estimate[1],sd=msft.norm$estimate[2]))
+

+
msft.norm$aic
+
## [1] -22697.15
+
msft.norm$estimate
+
##         mean           sd 
+## 0.0002408549 0.0125129768
+
msft.log <- fitdist(returns$Microsoft,"logis")
+plotdist(returns$Microsoft,"logis",para=list(location=msft.log$estimate[1],scale=msft.log$estimate[2]))
+

+
msft.log$aic
+
## [1] -22687.25
+

Exercise 4 +Plot the joint distribution of the Apple and Microsoft daily returns. Add the regression line to the plot and compute the correlation of both variables.

+
plot(returns$Apple,returns$Microsoft)
+abline(lm(returns$Apple~returns$Microsoft),col="red")
+

+
cor(returns$Apple,returns$Microsoft)
+
## [1] 0.3786614
+

Exercise 5 +Use the pobs() from the VineCopula() package to compute the pseudo-observations for both returns values, then use the BiCopSelect() function to select the copula which minimize the AIC on the dataset. Which copula is selected and what are his parameters.

+
#install.packages("VineCopula")
+library(VineCopula)
+
+x.1 <- pobs(as.matrix(returns[,2:3]))[,1]
+x.2 <- pobs(as.matrix(returns[,2:3]))[,2]
+
+apriori.copula <- BiCopSelect(x.1,x.2)
+
+summary(apriori.copula)
+
## Family
+## ------ 
+## No:    20
+## Name:  Survival BB8
+## 
+## Parameter(s)
+## ------------
+## par:  2.55
+## par2: 0.77
+## Dependence measures
+## -------------------
+## Kendall's tau:    0.27 (empirical = 0.27, p value < 0.01)
+## Upper TD:         0 
+## Lower TD:         0 
+## 
+## Fit statistics
+## --------------
+## logLik:  335.41 
+## AIC:    -666.82 
+## BIC:    -654.32
+

Learn more about MultiVariate analysis in the online course Case Studies in Data Mining with R. In this course you will work thru a case study related to multivariate analysis and how to work with forecasting in the S&P 500.

+

Exercise 6 +Use the appropriate function from the VineCopula() package to create a copula object with the parameter computed in the last exercise. Then, do a three dimensional plot and a contour plot of the copula.

+
set.seed(42)
+bi.cop <- BiCop(20,apriori.copula$par,apriori.copula$par2)
+
+plot(bi.cop, type="contour",size=25,margins="norm")
+

+
plot(bi.cop, type="surface")
+

+

Exercise 7 Set the seed to 42 and generate a sample of 1000 points from this copula. Plot the sample and calculate the correlation of this sample. Does the correlation of the sample is similar to the correlation between the Apple and Microsoft returns?

+
#install.packages("copula")
+library(copula)
+
## Warning: package 'copula' was built under R version 4.2.3
+
## 
+## Attaching package: 'copula'
+
## The following object is masked from 'package:VineCopula':
+## 
+##     pobs
+
simCopula <- BiCopSim(1000,20,apriori.copula$par,apriori.copula$par2)
+plot(simCopula)
+

+
cor(simCopula[,1],simCopula[,2])
+
## [1] 0.3778374
+

Exercise 8 Create a distribution from the copula you selected and the margins you fitted in the exercise 2 and 3.

+
#t.cop <- tCopula(c(0.55,0.77), dim = 2, dispstr = "norm", df = 4,df.fixed = FALSE, df.min = 0.01)
+
+#mjd <- mvdc(copula=t.cop,margins=c("norm","norm"),paramMargins=list(list(mean=apple.norm$estimate[1], sd=apple.norm$estimate[2]),list(mean=msft.norm$estimate[1], sd=msft.norm$estimate[2])))
+

Exercise 9 Generate 1000 points from the distribution of exercise 8 and plot those points, with the Apple and Microsoft returns, in the same plot.

+

Exercise 10 Having made a model, let’s make some crude estimation with it! Imagine that this model has been proven to be effective to describe the relation between the apple return and the Microsoft return for a considerable amound of time and there’s a spike in the price of Apple stock. Suppose you have another model who describe the Apple stock and who lead you to believe that the daily return on this stock has a 90% chance to be between 0.038 and 0.045. Using only this information, compute the range containing the possible daily return of the Microsoft stock at the end of the day and the mean of the possible values.

+ + + +
+ + math  + + Data Analytics  + + R  + +
+ + + +
+
+ +
+ + + + + + + + +

See also

+ + + + +
+ + + + + + + + + +
+ +
+ + +
+ + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/post/copula-example/returns_00_17.csv b/post/copula-example/returns_00_17.csv new file mode 100644 index 0000000..bda9bbf --- /dev/null +++ b/post/copula-example/returns_00_17.csv @@ -0,0 +1,3833 @@ +"ID","Apple","Microsoft" +1,0,0 +2,0.0340425531914894,0.0248618784530387 +3,0.0447154471544715,0.0136239782016349 +4,0.0443525248280989,0.00179856115107914 +5,-0.042540110083148,-0.0267774699907664 +6,-0.00620363324693861,-0.0226628895184136 +7,-0.0451701621454683,-0.0136319376825706 +8,-0.0103111331257147,-0.00101729399796541 +9,0.0135618335959724,0.0305719921104536 +10,-0.0424106666666666,-0.012987012987013 +11,0.0371371079471137,0.0263901979264844 +12,-0.0136892965419371,0.00841121495327103 +13,0.0381878647973808,0.0124113475177305 +14,-0.0184574803147281,-0.0245231607629428 +15,0.00979108053092098,0 +16,0.0350530370370371,0.0147329650092081 +17,0.0209741605834548,0.0259067357512953 +18,-0.0130227076767374,0.00258397932816537 +19,0.0456788597347783,0.0166805671392827 +20,-0.0348835694970367,-0.0101721439749609 +21,-0.0399034226769275,-0.0281576830249397 +22,0.0450346100731207,0.0227987421383648 +23,-0.0458934826017217,-0.00872323552735924 +24,0.0493684666133284,0.00158353127474268 +25,0.0175851803922022,0 +26,-0.0326877288135593,-0.0191082802547771 +27,0.00361885631386809,0.0301158301158301 +28,0.0482204345085489,0.0129573170731707 +29,0.047045883485195,-0.032258064516129 +30,-0.00329311988008762,-0.00394944707740916 +31,0.0329087399714223,0.0147859922178988 +32,-0.0420354366042789,-0.00469116497263487 +33,0.0205851860049277,-0.0126682501979414 +34,0.010718146807136,-0.00959232613908873 +35,-0.0185589856028656,0.00398089171974522 +36,0.0442176507936507,0.0225563909774436 +37,0.0274655869177294,-0.0226449275362319 +38,0,-0.0175115207373272 +39,0.0372596509800268,0.0225225225225225 +40,0.0492003777968317,0.0017905102954342 +41,-0.0304182952093237,-0.0163785259326661 +42,-0.0436506666666666,0.00990990990990991 +43,0.0156248769531096,0.0124555160142349 +44,-0.0131923571682502,-0.0162748643761302 +45,0.011733862288766,0.0125 +46,0.0157893480332357,0.00168350168350168 +47,0.00131397651266984,-0.0223752151462995 +48,0.00262135779816519,-0.00258843830888697 +49,-0.0132802555444465,-0.00346320346320346 +50,-0.00803221522234626,-0.00785340314136126 +51,0.0373713371240135,-0.00880281690140845 +52,-0.0287498365500195,-0.00792253521126761 +53,0.00990091049897385,-0.00530973451327434 +54,0.0229744927090296,0.0087719298245614 +55,0.0483314189795291,-0.00706713780918728 +56,0.0320232486244971,0.00527240773286467 +57,0.0123776624948622,-0.00707964601769911 +58,0.0215283552924887,0.00964066608238387 +59,0.0190075925821238,-0.0052863436123348 +60,0.00525199999999996,-0.0133928571428571 +61,0.0235898397285902,-0.0026857654431513 +62,0.0394087724137931,0.00534283170080142 +63,-0.0160161136511981,-0.00089126559714795 +64,-0.00748663127226973,-0.0072661217075386 +65,-0.0119047272727273,-0.0100917431192661 +66,0.00431031049345904,0.00183150183150183 +67,-0.0294200172508756,-0.0253164556962025 +68,-0.0119908905109489,0.0307692307692308 +69,0.0181713689712568,-0.0116731517509728 +70,0.0245327075290421,-0.0326530612244898 +71,-0.0400973624339194,0.0229312063808574 +72,0.0056334437769313,0.00337457817772778 +73,-0.0201149480776868,-0.0253748558246828 +74,-0.0419161797124349,0.00687285223367698 +75,0.0187495056248517,-0.0252873563218391 +76,0,0.0253623188405797 +77,-0.0202697231557655,-0.00408163265306122 +78,0.0388346488201215,0.0199095022624434 +79,0.0127794543988103,-0.00272232304900181 +80,0.0457321861985978,0.0107719928186715 +81,-0.00280880848380973,-0.0302197802197802 +82,-0.0379010612244898,0.0179856115107914 +83,-0.00586538581547516,0.0141843971631206 +84,0.00619155540637634,0.0202821869488536 +85,0.0161294401663669,-0.0141110065851364 +86,-0.0188681238874844,0.0178412132024978 +87,-0.0460526267313024,-0.0163191296464189 +88,-0.0270268020453615,0.00180995475113122 +89,0.0231023029114816,-0.027906976744186 +90,-0.0066448372093023,0.00830258302583026 +91,-0.0168915620892231,0.00732600732600733 +92,0.0420706883253206,0.0241286863270777 +93,-0.0334449338150958,0.0106100795755968 +94,-0.0266878921993776,-0.0297790585975024 +95,0.0329673846153846,-0.0132450331125828 +96,-0.0224721551993181,-0.00332225913621262 +97,0.0121952552052696,0.00535331905781585 +98,-0.0249993233336041,-0.0196506550218341 +99,-0.0389614545454545,-0.0315315315315315 +100,0.0131580369344613,-0.0287581699346405 +101,-0.021277143322845,0.00933333333333333 +102,0.0084392213497461,-0.00942126514131898 +103,0.0042014117647059,-0.0273775216138329 +104,0,0 +105,0.0402929230769231,0.0103225806451613 +106,-0.0419846055591322,0.0139949109414758 +107,0.0113208727376005,-0.00383141762452107 +108,-0.0377359606977302,0.0200945626477541 +109,-0.00365021983070823,-0.0178359096313912 +110,-0.018587001506379,0.00708382526564345 +111,-0.0129869090909091,-0.0145530145530146 +112,-0.0282134699148308,-0.0182002022244692 +113,-0.0191695394258012,0.0341796875 +114,0.00287338010300142,-0.0177514792899408 +115,-0.023668442981744,0.0210420841683367 +116,-0.0242429137925651,-0.025693730729702 +117,-0.0216718309194959,0.0181634712411705 +118,0.0443791589929015,0.00999000999000999 +119,-0.018072480185785,0.0328502415458937 +120,0.0285717333333333,-0.00638297872340425 +121,-0.0294120876586941,-0.00966702470461869 +122,0.0192309763313822,0.00321199143468951 +123,0.0280376766529243,0.00743889479277365 +124,-0.0375425447006046,-0.0257270693512304 +125,0.0298009069776757,0.00666666666666667 +126,-0.00332204651162792,-0.0192525481313703 +127,0,0.0275330396475771 +128,-0.00645119800220968,-0.00315789473684211 +129,0.0266671943109985,0.00605293546429748 +130,-0.0117646128719636,0.0205973223480947 +131,-0.0210210230410593,-0.0242616033755274 +132,0.0428134682265839,-0.00347222222222222 +133,-0.0380949333333334,-0.00582072176949942 +134,-0.00318450890506827,0.0160366552119129 +135,0.0455925106382979,-0.0046029919447641 +136,-0.0444444444444444,-0.0308422301304864 +137,0.0159791360889239,-0.00338600451467269 +138,-0.0208426767079265,-0.0125714285714286 +139,-0.0222326982646875,0.0201567749160134 +140,-0.0379486192767814,-0.0276774969915764 +141,-0.0135988370274574,-0.0100111234705228 +142,-0.00243398223622373,0.0168416792006412 +143,-0.0110092650450216,0.00599600266489006 +144,-0.045708942432199,-0.022865602895213 +145,-0.0271568755168232,0.0139130434782608 +146,-0.0325769870039598,-0.010989010989011 +147,-0.00915505389386919,-0.0103626344714946 +148,0.0279122213450196,0.0307073889881651 +149,-0.00121514812842806,-0.00810073797485147 +150,-0.0278544570976002,0.00929886346863469 +151,0.0248214328963621,-0.00587723607003347 +152,0.0306798398943938,0.0313781201413427 +153,-0.031650883946385,0.00882597390938566 +154,-0.0158729344729345,0.00943658088916395 +155,-0.0246039219853145,-0.0235794879664917 +156,-0.0426086993572782,-0.00571431428571429 +157,-0.00656437579305252,-0.00864550407361659 +158,0.0188918897961073,-0.0098952267201623 +159,-0.0047453847705582,-0.00659156329817256 +160,0.0381746792926111,0.0128688251666381 +161,-0.023354732623802,-0.0145226056776471 +162,-0.000850233888692486,-0.00117494499485662 +163,0.00127342964969692,0.0101759558075303 +164,-0.00255336235404997,0.0216185186066992 +165,-0.0116224689414604,-0.00875182259694813 +166,-0.00129318954369056,0.0281651693205474 +167,-0.019332428705172,-0.0114229016261231 +168,0.00852140350877194,-0.000144579358196011 +169,0.0449976979418192,0.0164912719073796 +170,-0.0111329159986285,0.0062164737557637 +171,0.0133715402810965,0.0250688712140184 +172,-0.0101302479749634,-0.00331672194582642 +173,0.0429365611323581,0.0179153094462542 +174,-0.015947656280268,-0.00669487616628293 +175,0.0132934541198334,-0.000554938941316986 +176,0.00781660890897806,-0.019663318159193 +177,-0.0296781690140845,-0.0259796799425348 +178,0.0273972602739726,-0.0129374603315177 +179,-0.00541062416029276,-0.01704542515088 +180,-0.00693412511796681,0.00653597742127143 +181,0.0364609951638075,0.00615681593108909 +182,-0.0103327044025157,-0.014673746486307 +183,-0.0101047553419565,0.0183918163672655 +184,-0.017566579471587,0.0140567894292943 +185,0.00849634447841688,0.0219961237832313 +186,-0.012473550533084,0.00356167123287671 +187,0.0271969014897991,-0.0339943635692454 +188,-0.00251694651987807,-0.00184469981993197 +189,-0.0280289707557644,-0.0286089613601236 +190,0.029515939334994,-0.00563245530118855 +191,0.0197183098591549,-0.00364454744292388 +192,-0.037144982351006,-0.002247766226468 +193,0.0454180115870925,0.00891116680590346 +194,-0.0415833750668088,0.0275595976298746 +195,-0.0225182236475382,-0.0311522451126694 +196,-0.0235726632496583,-0.0116103136308807 +197,-0.0335673993357014,0.0171903368589012 +198,0.00645476131842518,-0.0133654911167136 +199,0.0195150802710801,-0.0171069797737291 +200,-0.00158489153883872,0.00501522765864889 +201,-0.00745077089401055,0.00589209832626996 +202,0.0141659976392452,0.0042124265318961 +203,0.0383446091512833,0.0145291928556972 +204,-0.0164101555292467,-0.00837189415458212 +205,-0.0193409244095376,-0.0114925453347209 +206,0.00623345454545462,0.00331574991155235 +207,-0.0185185185185185,-0.022972525439408 +208,0.00787380742757103,0.0023073680262308 +209,-0.00157739271631737,0.00778379168399226 +210,0.00366684243064726,0.00470919019567988 +211,-0.0192202903598815,-0.0176225067978818 +212,-0.015726462502553,-0.0235759810126583 +213,0.0112600524117907,0.0219746511304657 +214,0.0027598227903262,0.0130781180223286 +215,-0.0111609375,-0.0315893725432502 +216,0.0159250995991432,-0.00197820639630733 +217,-0.0224589531208362,-0.0260487491897411 +218,0.018498937051077,0.00417271692592788 +219,-0.0282609721171799,-0.0258478753425132 +220,-0.0319691638707226,-0.00813281327800825 +221,0.0388143396226415,0.00192816827344425 +222,-0.0164386903360077,-0.0169340826001455 +223,0.0161728301886792,0.0284032549912277 +224,-0.0468399654266287,-0.0307033559443055 +225,-0.0254624941059042,-0.0111912992349712 +226,-0.0436115532692325,0.0259572901325479 +227,0.0434781535788845,-0.00835348091158269 +228,0.00317825931783571,-0.0211224703279019 +229,-0.0257424388458827,-0.0204893574696637 +230,0.023210576816322,-0.00620496397117699 +231,0,0.0236466298083498 +232,0.00193063063063064,0.0119714616721375 +233,-0.0325581395348839,0.023751178133836 +234,0.0161086760977295,0.0221760907076891 +235,0.00370395016000616,0.00551340454858715 +236,0.048751944559354,0.017113962064996 +237,0.0149918883980384,0.00106424260148124 +238,-0.00111206225680944,0.0289355828819985 +239,0.00111082694808662,0.00667233532934141 +240,0.0163937687001345,0.0198618645988993 +241,0.0427439713173524,0.0145140247879974 +242,0.0125066206371277,0.0198210032026533 +243,-0.0278522853301398,-0.00578781350482306 +244,-0.00170465889719786,-0.0129075742898243 +245,-0.00227778991394298,-0.0125537398949702 +246,-0.00107657477331993,-0.00716609097178861 +247,0.0262189799455711,0.0295558400505769 +248,0.0255491083851923,0.0233096333223104 +249,0.00102123511562334,-0.00824899610894951 +250,-0.0470335498556227,0.00263890104436214 +251,0,0.0121147370035269 +252,0.00213322621157832,0.00881592947256441 +253,0.0320077538485557,0.0310751389963139 +254,0.012238758233301,-0.0295679472065472 +255,-0.00822580807695463,0.00257117354594153 +256,-0.0253033210332104,-0.00562740684410646 +257,-0.0240652329749104,-0.0174311615464477 +258,0.00762174951661568,-0.0210772508304605 +259,0.00806481773540153,0.0101992891361458 +260,-0.0176193333333334,-0.0219641976164357 +261,-0.022893027892929,-0.0149681847133758 +262,-0.00538746485429912,0.0314620007070945 +263,0.041315105732834,-0.00981149353683236 +264,-0.0118770580172136,0.00864591685322958 +265,-0.0430201893748737,0.00801171134707325 +266,-0.0106478260869565,-0.0120890457883225 +267,0,-0.0114823146878114 +268,-0.0348945885940475,0.00386218062982769 +269,-0.0134944625407167,0.00927146485777579 +270,-0.0233333333333333,-0.0253508390131786 +271,-0.0299163227318325,0.017348842901873 +272,0.0111538323136599,0.0223253393838595 +273,0.0185624975844831,0.00418640128115515 +274,0.0282149809037963,0.00316595202664985 +275,0.015714,0.0115486822623631 +276,0.0168537484744847,-0.00401373593065176 +277,0.0060495114006514,0.00605797872340426 +278,0.02628028284179,0.00250549749463504 +279,0.0160497533615913,0.000294739935325184 +280,-0.0242008174975676,-0.0244528603773585 +281,0.0118744678754083,0.0316337407693922 +282,0.00464322459744833,-0.00478957896111517 +283,-0.0344980846284864,-0.00495921834770193 +284,-0.0128260061919504,0.0118189683430087 +285,-0.0443415119607819,-0.00975109882113239 +286,-0.0197833198916666,0.00822745404813684 +287,-0.00855164139239187,-0.00976531117912851 +288,0.00472822784458203,-0.00204466183599652 +289,0.025345806451613,0.0155284247000188 +290,-0.0442731387347183,-0.02475323339463 +291,-0.0160403343832268,-0.0254421036301583 +292,0.00818586886565005,0.0133126319911032 +293,0.0017203443819948,-0.0125391536050157 +294,0.000859733488634794,0.000313381385145771 +295,-0.00866944158382676,-0.0240693196405648 +296,0.0423411444319045,0.00843274489841669 +297,0.0254854410170616,0.0134986972217862 +298,-0.0126997982875375,-0.0167571018193426 +299,0.0370809525966,-0.0251963686255355 +300,0.00392935197873107,0.00049066228975754 +301,-0.0316171843034306,-0.0124172181318802 +302,-0.015226586868574,-0.0100334782608696 +303,-0.0112355361043189,0.0140148717554866 +304,0.0380303381856945,0.00785211817922069 +305,-0.0109269121813032,-0.0164616228799467 +306,0.0119954389455165,0.0271756713037852 +307,-0.0166668279132661,-0.0022697795071336 +308,-0.0292887004779329,-0.0240743815374399 +309,0.0220495441375231,0.01619368894178 +310,0.0449387727742584,0.0184495592941924 +311,-0.00591466090657557,-0.00905212638770287 +312,-0.0119812903225806,-0.000857044909153191 +313,0.0345821325648415,0.0304897630331753 +314,-0.0322993680066924,-0.00348760293317677 +315,0.0224348944852689,0.00864372124332162 +316,0.0127154193481329,-0.0145089281087714 +317,0.0113544173509123,0.0192337451133698 +318,0.0159614525139666,0.00606148623322881 +319,-0.0137542093453413,-0.0287815158298689 +320,-0.00939126020559252,-0.00708537865009271 +321,-0.0024561604584526,-0.0143743216473596 +322,0.0208417618563718,0.0203232510698271 +323,-0.00848827740595986,-0.00563247505632437 +324,0.00442647887323944,0.00144624779045471 +325,-0.0267822892745668,0.0205345827900913 +326,-0.0074718982933828,-0.0150537634408602 +327,-0.031691565883646,-0.0205976700996118 +328,0.00468874760251451,-0.00253889632569742 +329,0.000426501808308029,0.00605646049988095 +330,0.00844909310504325,0.0144255342588116 +331,0.0322978714392582,0.00115932424116184 +332,-0.0134735965961441,-0.0168648316398071 +333,0.0461842681568517,0.00212573959255983 +334,-0.00646693561302056,-0.0103812783383311 +335,-0.00732890760115505,0.0235932183294925 +336,0.0227088347018244,0.0253996802841917 +337,0.00804465133461813,-0.0275597736813287 +338,0.00798100558659219,0.0203826211335598 +339,-0.00240016038402567,-0.00430960690643223 +340,0.0141710455764075,-0.0208370114484545 +341,-0.0275482093663912,-0.0046124535963261 +342,-0.0172136081323285,0.0145105244755245 +343,-0.0183449638528362,-0.0289620435330095 +344,-0.0115463908002977,-0.0296350794726773 +345,-0.0201936912237014,-0.0182950207468878 +346,0.0145107806393683,0.0132142192443699 +347,0.039649906598521,0.0141654282478779 +348,0.0127724794657963,0.000382625349507402 +349,-0.0120932453789195,0.00928913744075824 +350,-0.0122412822084186,-0.0300722515133763 +351,-0.00765623008826364,-0.0332929365095668 +352,-0.0379693631761027,-0.0193336906348699 +353,-0.0080105919003116,0.0171822107466258 +354,-0.0130541159895753,-0.00237446575342461 +355,-0.00277667636282059,0.017761068612807 +356,-0.00799639952105563,0.00517572747370082 +357,0.0353620859077233,0.0279381645721052 +358,0.0341537809738953,0.0206129514775629 +359,-0.0426498550724637,-0.0292903127784571 +360,-0.00708932502830068,-0.0179663226299695 +361,0,-0.00518731988472629 +362,0.00909074605555688,0.0112082066869302 +363,-0.0386261736264081,-0.0339815360439993 +364,-0.017023042246257,-0.0301497786381941 +365,-0.00570693540764389,0.0112045218087234 +366,-0.00264102135924485,0.032520325203252 +367,-0.0252707604034983,0.00462431581409195 +368,-0.0355142155647334,0.00153901500577138 +369,0.00372485964155323,0.0159030670200682 +370,-0.0281476004396317,-0.0243452222668675 +371,0.0278607020618313,0.0186424977375565 +372,0.0214219063854036,0.00772270114942528 +373,-0.0193547356119632,0.00553673850556385 +374,-0.000584219686239747,-0.00480595211851949 +375,-0.00758401223243588,-0.0228517469310669 +376,-0.0356496633655996,0.0217994080251465 +377,0.0298940316157205,0.01438448704969 +378,0.0372461709359302,-0.00402190127970744 +379,-0.00708347107438025,-0.0237169915908627 +380,0.0347575047604005,0.00771608796296297 +381,-0.027381856545139,0.00545014095094909 +382,-0.0121247099163152,-0.0185681080180664 +383,-0.0451174289245981,-0.0202468183571153 +384,0.0394956621507776,-0.0011583011583012 +385,-0.0207170259164672,-0.0107317073170731 +386,-0.0426958085912764,-0.0174134220309137 +387,-0.0020054820877602,-0.0312751803359492 +388,0.026571869530542,-0.00311854482821394 +389,-0.0111403669724771,-0.0025010004168404 +390,-0.0242214499347473,-0.0301733843728891 +391,-0.0328804766603355,-0.00954757856114668 +392,0.0192944854136337,0.0301550647695902 +393,-0.0199994586668832,-0.0164173323531725 +394,-0.00066777869720581,0.00722104364674873 +395,-0.027415623383739,-0.0299617496828836 +396,0.0281874439461883,0.00120554550934302 +397,0.0126504711826765,0.00459999999999994 +398,-0.00439974692655689,-0.0188087774294671 +399,0.0130272904364925,0.0237184018254936 +400,-0.00939323967269625,0.0178471162878076 +401,-0.0152576027683163,-0.0193412095235078 +402,-0.0128776528325428,-0.00230333981970597 +403,-0.0457917968462753,-0.0247835955940204 +404,-0.0102038095238094,-0.029566584464699 +405,0,0.0237247914699569 +406,0.00338942510756275,-0.0305623459428547 +407,0.0296968150008799,0.024683675585978 +408,-0.000695615575943276,0.0180698151950719 +409,-0.00279218539798414,0.0218919461739304 +410,-0.00279902107740279,-0.0249073270931524 +411,-0.0106079207920791,-0.0303287367835106 +412,0.00211728975055897,0.0158630348570235 +413,0.0227582131746795,-0.00272084565595833 +414,0.0202706729363955,-0.010361556354409 +415,0.0146468727891974,0.00963350785340316 +416,-0.0301777653589443,-0.0116525423728813 +417,0.0195020821113542,0.0054782975136957 +418,-0.0143442662142803,0.00898334794040324 +419,0.0194246405527232,0.0187056125007789 +420,-0.0156466666666667,-0.00670991341991342 +421,0.00135910270688739,-0.0209944751381216 +422,-0.0239946331694237,-0.0135935101951326 +423,0.0090911849967055,-0.0180803571428572 +424,-0.0192447584825718,-0.023532099611606 +425,-0.0188822159254391,0.00635641316685571 +426,-0.00657836161135063,0.0208935754214903 +427,-0.00662296000675793,-0.0227324381571976 +428,0.0176028436018956,0.00852103875025353 +429,-0.0318924212462681,0.00709080165452051 +430,0.0151096153846154,-0.0121882312774035 +431,0.00952380952380953,-0.0162570163056713 +432,0.0120966414108388,0.0287594360902256 +433,0.047341226715476,0.0275246772968869 +434,0.0121713004484305,-0.0140519730510105 +435,-0.011010493654209,0.00230458997503356 +436,0.0337927282380245,0.0195819996234231 +437,0.00560000069695082,0.00673278448727197 +438,0.0177259233713656,-0.00886796226415096 +439,0.000591479219943373,0.0102329216654905 +440,0.0185829268292682,0.00613708595956815 +441,-0.0101005012245576,-0.0165154270967488 +442,-0.0448554148885772,-0.0230226141849239 +443,0.0306907889142214,0.0119243812850627 +444,-0.00320769847634314,0.0153540823699421 +445,0.0435588850162244,0.0286015431268102 +446,-0.0219435681646223,-0.00529200935939342 +447,-0.0191697149098676,-0.0150402870202431 +448,-0.0248855336962761,-0.0180458986511119 +449,0.0167423009034641,0.0310843882403529 +450,-0.0212369848483391,0.00652700080635513 +451,-0.00250457169807672,0.000171698437231598 +452,-0.0363400483686044,-0.023374304978056 +453,0.0197202315165689,0.020316803708099 +454,-0.0141932884911886,-0.00693484743411929 +455,-0.0210802315994119,0.000173305604898843 +456,-0.0013196571661818,-0.0172808675718568 +457,-0.0126916465753783,-0.00300672090555362 +458,-0.0232401913875598,-0.0216841344416335 +459,0.0214045513584685,0.00234364512912759 +460,0.034686635594253,0.00888724343222534 +461,0.0135571283832945,0.0118917306988656 +462,-0.0197502304147467,-0.00904563444879575 +463,-0.0270448842279035,-0.0318094857142857 +464,0.0152523852450418,-0.00220750551876375 +465,-0.0350038531239131,-0.015505362058859 +466,-0.0260557673082345,-0.00790807757484466 +467,-0.00424356435643566,-0.00131975867269985 +468,0.0241545893719806,0.0177777777777778 +469,-0.00905320586440266,-0.00334448160535117 +470,0.0027776400462388,-0.00805394268589623 +471,-0.0241813586966261,-0.0079289783677939 +472,0.000710447761193912,-0.00417065402843604 +473,0.0181433432561103,-0.0203094777562862 +474,0.00671154182240499,0.00130131994794568 +475,0,0.0178930071206866 +476,-0.0033675429946245,0.0184587813620071 +477,-0.0206180012046732,-0.0287610240132366 +478,0.00885490825132489,0.0281311582823452 +479,0.00271820541377499,0.00196702439080921 +480,-0.00615215311004786,0.00833484660400782 +481,-0.00136933663353993,0.0101808316594407 +482,-0.0124738773316362,-0.0124400568686689 +483,0.0129964396726569,-0.0166215362826211 +484,-0.00570584634557217,-0.00253259292684229 +485,-0.0100864509712747,-0.0064706274509804 +486,0.0204654875842643,0.0244835127958497 +487,0.0233551243156052,-0.0138295714390714 +488,0.0308643220037084,-0.00716915198689061 +489,0.0234427233317925,0.0218393107593668 +490,0.00278537682043933,-0.0164349346818373 +491,0.0204642536883691,0.0226524290505589 +492,-0.00410986357669365,-0.0262046069315299 +493,-0.0103803445840352,-0.00766609880749573 +494,-0.00138641757073264,0.00970050652469447 +495,-0.0197879914595029,-0.0180334041205065 +496,0.0139375609756098,0.0168847607900058 +497,0,-0.0202412584083228 +498,0.00277956953155946,0 +499,0.0103160977920623,0.0117047026301466 +500,0.00886189623202415,0.0271221118012422 +501,0.0392926101617839,0.0324518843129762 +502,-0.0282828359011006,-0.017529473398717 +503,-0.00541611374407583,-0.0161558415971765 +504,0.0153337271998425,0.019894438485361 +505,-0.017639622474847,-0.0232654341503947 +506,0.0186418134010404,0.00496076870769863 +507,-0.035862216789577,-0.0245658608824285 +508,0.0242267735288935,-0.00127230703986438 +509,0.00999306995428792,0.00506333311969067 +510,-0.0245730957379813,-0.00679694108764057 +511,-0.00618173076923079,-0.020372821846554 +512,0.0041042396431629,0.015785024923847 +513,-0.00412115384615386,-0.00730558659217874 +514,-0.00206483166756114,0.0123089563798369 +515,-0.011133746221122,-0.0265794323930531 +516,-0.00983836549331041,-0.00657903537627351 +517,-0.000703938313344131,0.0252244559736834 +518,0.00405886442729763,0.0076428395960241 +519,-0.000666399733440203,0.00422430859353655 +520,-0.00334501716990188,0.0106382598784195 +521,-0.00268262910798132,-0.00266666666666668 +522,0.00600039759984098,0.0120436582611968 +523,0.0123709931626135,0.00784617497057663 +524,-0.00971547266746075,-0.00950495049504944 +525,0.0055207729468599,-0.00838654119862055 +526,0.00549046135633805,-0.0149980137819213 +527,-0.0304099009900989,-0.019000455142522 +528,0.00141285250867822,0.00574952772073929 +529,-0.00968188239030186,0.000388690244850332 +530,-0.00346939528955022,-0.0255081705858908 +531,0.0055207729468599,0.0031783869686135 +532,-0.00276802729854283,0.0160281469898357 +533,0.0125269258760226,0.000813338755591687 +534,0.0279824742268042,0.0226170840064621 +535,-0.0141892393476149,-0.00650406504065041 +536,-0.0113300638459407,0.0128410914927769 +537,-0.00914588275215213,0.0227450980392156 +538,0.00152146188194617,-0.011503411801008 +539,0.0273875647668393,0.0213509704968945 +540,0.00515463917525774,-0.00155524889406101 +541,-0.0104166666666667,-0.00902310710082397 +542,-0.00674202550203395,-0.0107058291318726 +543,0.0367969696969697,0.0202020590520589 +544,0.014225031514927,0.00232554272579628 +545,0.0112511986641909,-0.00899487680876024 +546,0.00974930633685414,0.00583199867153965 +547,0.00622878806521966,0.0145594252873563 +548,0.00849835886648351,-0.0146210465563678 +549,0.0194444487654332,-0.00971250971250971 +550,0.0163937687001345,0.0235205226282048 +551,0.0140083004328235,-0.006106869995921 +552,0.00589169980450985,-0.00808006925740677 +553,-0.0064686792452831,-0.014441802714996 +554,0.00961014517994084,0.00659170195456765 +555,0.00372340465142595,-0.00860387172467735 +556,-0.0386740374225456,-0.032714054927302 +557,-0.0174256362958148,-0.00527815693374572 +558,0.00336156862745099,-0.0249687047453724 +559,0.0213814716427052,0.00538075331125834 +560,0.00436659531657052,0.00247725030872219 +561,0.0296610263753262,0.0229932221463 +562,-0.0328226548846071,-0.0155674313805817 +563,-0.00994464198283346,-0.000409836065573835 +564,-0.00835632218871053,0.00853315690641386 +565,-0.0286530560505252,0.00121745134811081 +566,-0.00808780771075412,0.00964630263851707 +567,0.0164770435821541,-0.000402010438198336 +568,0.0022674603174604,-0.0323786218347862 +569,-0.0285714285714285,-0.017743979721166 +570,-0.0214410907823488,0.00336842105263151 +571,0.0154730032757581,0.0080385453391699 +572,0.0180077618440603,0.00440180072028799 +573,-0.0200918438365455,-0.0137931034482759 +574,0.0465241379310344,0.0291452945705118 +575,-0.00439780002247388,0.0219568575484152 +576,0.0486397591296568,0.00421944764096665 +577,0.00104524544981754,0 +578,0.00312520735670604,0.00987466767945302 +579,-0.00734522329111544,-0.0213343281096071 +580,-0.0149094734048541,-0.00311284034580381 +581,0.016238245019878,-0.0174188836104513 +582,0.0103682747919414,0.0190291262135922 +583,-0.0298985616549452,-0.00468205246516001 +584,0.0173141603418173,0.000390015615835165 +585,0.00157087529728931,0.0195029063097514 +586,0.00934156429427149,0.0271577019031884 +587,-0.00731834584892447,-0.0143395849056604 +588,0.0372419653262275,0.0335521517140774 +589,0.0259802915705597,0.0101083389852585 +590,-0.0256413324567788,-0.00837284340636485 +591,-0.0158325891213246,-0.0208100706057228 +592,0.0136022179951856,0.0146466134985945 +593,0.00251296406644309,0.00328470802919698 +594,-0.0147888862394465,-0.00476714338100473 +595,0.0130854528262803,0.0090843023255814 +596,0.0492820142853602,-0.0310977508018827 +597,-0.0019174496644296,0.00743763508507385 +598,-0.0121299357467311,-0.032642011035253 +599,0.00913432867967859,0.0128884766068415 +600,-0.000480808080808001,0.00264657834984576 +601,-0.0136518771331058,-0.0173077307692308 +602,0.0478177477672463,0.0330977699181022 +603,-0.0262024723768514,-0.0105222844598916 +604,-0.013031081081081,-0.00528908217941372 +605,-0.0216965547425704,-0.0091497903164316 +606,0.0379507662145666,0.00681560015145777 +607,-0.016883746624939,-0.00917080626671756 +608,0.0226310231023101,0.000381970970206188 +609,-0.0407264064232397,-0.0202650038971161 +610,-0.0382065167390202,-0.000389863547758346 +611,0.0150522875220133,0.00233368348244592 +612,-0.0147655819516885,-0.00508205629397973 +613,0.00101759897912527,0.00117145641657734 +614,0.00203035512382189,0.0046637776914108 +615,0.0237861178039293,-0.00507812499999996 +616,-0.0105157705010205,0.0011704643453166 +617,-0.0131916806891609,-0.00352380565685966 +618,0.0309734543730045,0.00622568069160776 +619,0.0328410343343235,-0.00642722092902749 +620,0.0309039753424285,-0.00800308689024398 +621,-0.0383135905229146,-0.000762814674401668 +622,-0.000959060402684498,0.0105660754716981 +623,0.00902584580309144,0.00263455024463682 +624,0.0200190837953289,-0.00567751703255104 +625,0.031996214511041,0.00339494530365899 +626,0.0185758513931889,0.000377073906485596 +627,0.0105033688837313,0.0271460014673515 +628,-0.00525659312423885,0.0045726697150897 +629,-0.0146663986963201,-0.00176183938554748 +630,0.0105541758040148,0.0159501040221913 +631,-0.0165402786356976,-0.0165667600787184 +632,-0.00856600386546368,-0.0297641390114025 +633,0.0168440558038858,0.0104167025862069 +634,0.0233763636363636,0.0176429075511644 +635,-0.0400717586478814,0.000705253853834512 +636,0.00670822838030151,0.0186850865051902 +637,-0.0108499999999999,-0.0140350877192982 +638,0.0332169522347985,0.0338983050847458 +639,-0.0132863607871001,0.0153537722080698 +640,-0.0226447443256572,-0.0306157206742346 +641,0.0156041002582167,0.0179054054054054 +642,-0.0435630849607272,-0.00779033286118985 +643,0.0125661684452555,-0.00177364307294631 +644,0.0286388651721506,0.0221990634755463 +645,0.00336700336700344,0.025245476858345 +646,-0.010694990628101,-0.000701754385964897 +647,0.0269178082621976,0.00376844796956329 +648,0.040051345405171,-0.00171592318860406 +649,-0.0069380739862902,-0.0111033657182512 +650,0.0166310447761194,0.00414654443170194 +651,0.00971308875512955,-0.00103773780698715 +652,0.0275153137551846,-0.00451699080899968 +653,0.008146234170159,-0.00348678521617848 +654,0.0108784859692575,0.0134158926728586 +655,-0.0219778461538462,-0.0103698582786036 +656,0.0202409182362407,0.0143100511073254 +657,-0.0017255395557446,0 +658,-0.0184534303081599,-0.015922499685791 +659,0.0100046098299599,0.000691836734693898 +660,0,0.0111482348569305 +661,0.0472175299801804,0.0106618010786103 +662,-0.00126644142959549,-0.0172027299925206 +663,-0.0259851838916961,-0.0237365611126891 +664,-0.0087376146788991,0.000765034459259202 +665,0.0112308452434155,0.0202399175412294 +666,-0.0104752482386953,-0.0233985423858841 +667,0.00521033434650462,0.00114942528735637 +668,0.00389299206929273,0.00495615707205486 +669,-0.0275557308839351,-0.00498084291187736 +670,-0.0273971639457234,-0.0038461538461539 +671,-0.016713560830147,-0.00775197704465029 +672,0.03537868338558,0.00692844495765977 +673,0.00401453951439622,-0.0112883997162944 +674,-0.0447347665176857,-0.00745101960784309 +675,-0.015617318387635,-0.0139165009940358 +676,-0.0352771225161315,0 +677,0.000489520222190146,0.00788954635108492 +678,-0.00196261078755862,-0.0099601593625498 +679,-0.00493106654765276,0.000398287518984927 +680,0.0411348541153387,0.0240963466770307 +681,-0.0227269803939089,-0.012992125984252 +682,0.00193040540540533,0.00196467575777312 +683,0.00908627711705704,0.0101127191798024 +684,0.0368494770795904,0.00503099845201239 +685,-0.00789238845656133,-0.00701480904130942 +686,-0.0242506871849084,0.000389559797428966 +687,0.00567347625030276,0.0202290450294257 +688,-0.0143881027552799,-0.008468090839107 +689,0.00950071529711592,0.00990853658536578 +690,-0.029339761240051,0.00530701308972768 +691,-0.0034347406152583,0.00789774351259866 +692,0.0391326732673267,0.000751634695541748 +693,-0.0153182369250132,0.00150090056285171 +694,-0.0356968836285341,0.00336574420344053 +695,-0.00248479100548797,0.0118255362832793 +696,-0.0120725352112677,-0.000739570978566202 +697,0.00798432894680779,0.0131386496350364 +698,-0.0172590845422249,-0.00146195170095199 +699,0.00755647431299482,-0.00662255334805006 +700,-0.00201908127208473,-0.00110497237569065 +701,0.0293972591276099,-0.00406801020458536 +702,0.0178058676023354,0.00624762977756815 +703,0.0174937148924283,0.00910415182462315 +704,0.00610921052631587,0.00218026889534883 +705,0.00421179104956733,-0.00548041631419747 +706,-0.00422960526315791,0.00291438969346492 +707,0.0401440794255515,0.0245201856616981 +708,-0.0036213674623239,0.00354111189801696 +709,0.0221335162815891,-0.00106348816247738 +710,0.032962337233477,-0.00177553267045453 +711,-0.0156520013610436,-0.0180766449746927 +712,0.0307628318584071,-0.00326441784548422 +713,0.0161690726508352,-0.00510390083849802 +714,0.00330562065428611,0.00974732816796651 +715,-0.00572200754595131,0.00970866629660796 +716,0.000439771343538474,0.0103203202846975 +717,-0.00530712074303412,0.00706710272321912 +718,-0.0193866511475831,-0.0103534094966083 +719,0.0168440558038858,0.016502808988764 +720,0.0195561980589825,0.0111110767746901 +721,0.00260095384490281,-0.0194689911504425 +722,-0.0244229194732467,-0.0194875864123994 +723,0.00705493827160502,0.00716592619132928 +724,-0.00531888156412731,-0.00940325497287528 +725,-0.010752775850757,-0.00912408759124088 +726,-0.00269559748427674,-0.00403074371452014 +727,-0.0215692460112219,-0.0103665679378008 +728,0.0280999032738885,-0.00185463656730854 +729,0.0127695277173467,0.00443135155096006 +730,-0.00176435787130864,-0.00669144981412638 +731,0.013490074806769,0.00444115470022209 +732,0.0344535294117647,0.0047882136279926 +733,-0.00294985250737457,-0.00742111289717571 +734,-0.0317392201512366,-0.0135389620157954 +735,0.00690872074115353,0.0148203038162282 +736,0.00429931101479517,-0.00821815465072838 +737,-0.0351582554517134,-0.0117158356657534 +738,-0.00312499999999993,0.0041400451637185 +739,-0.00946372239747642,0.00150323181122767 +740,0.00760295101941405,0.0100445688260629 +741,0.0197282736118766,-0.00674149787485031 +742,0.00998229339970365,-0.00754720754716982 +743,0.0367892232748889,0.00113083297659878 +744,0.00416328129280282,0.00636704096003598 +745,-0.00881982508522885,-0.0117469500472509 +746,0.00459857974880763,-0.000758361745985564 +747,0.0492848927436492,0 +748,-0.0284614593491185,-0.0201316298877276 +749,0.040590190493017,-0.00427686641822952 +750,0.020953972474424,-0.0137957424597659 +751,-0.0195211020963386,-0.0111598644878437 +752,0.0148762731951248,0.0114262809860631 +753,-0.0419655891167351,-0.00874399841017494 +754,-0.0243996863826977,0.000794281175536123 +755,0.0141272262889998,-0.00198969367249072 +756,-0.0202571921130951,-0.0096424270647822 +757,0.00734756323684735,-0.0105562326657016 +758,0,-0.00530608163265312 +759,-0.0225383892751943,-0.0144927536231885 +760,0.0082352921799312,0.0106513723883655 +761,0.00628705481796122,-0.00639232894956737 +762,0.0311711998218272,0.0110627424362997 +763,0.000358524303936357,-0.00436499982678576 +764,-0.03254429751236,-0.0108303650220618 +765,0.00258207246431441,0.00598086124401908 +766,0.0141817433917464,0.0297872340425533 +767,0.0289545924402961,0.00385360293435052 +768,-0.017606900295142,-0.00581403123310201 +769,-0.0190407204746569,-0.00820629152012504 +770,0.00799164373592941,-0.00431711145996858 +771,0.0181880184156932,0.00507618098101597 +772,-0.0412181302379794,-0.00628683668814002 +773,-0.0108857365529832,0.00235197961583698 +774,-0.00411219957337903,-0.00238469793322739 +775,-0.0292770370370371,0.0144927922251158 +776,-0.0223586040185508,-0.00789581523884723 +777,0,0.00471516680883439 +778,0.00180014372928091,0.0192678219935329 +779,-0.0210098061931299,-0.0110132525697504 +780,-0.00705248596102658,-0.000734790622145028 +781,-0.0185255170471807,-0.0248493985259563 +782,0.0119536038884121,-0.00302111027190335 +783,-0.0384016978118624,-0.0133946044161731 +784,0.0111237429134068,0.00834918406072106 +785,0.0026778880889144,-0.000759589821496511 +786,0.0191366647212003,-0.0011407224768335 +787,-0.00263355966145058,-0.00689119422315494 +788,0.00337480314960631,-0.0131885177196075 +789,-0.0148401054155171,0.00578476667952183 +790,0.0316872582948987,0.000385543547203373 +791,0.0058610256410256,0 +792,-0.00404553114780941,0.00613022988505757 +793,-0.00480428712522442,-0.00928070343075397 +794,-0.0157657669493819,-0.0125293652102833 +795,0.0155210654487114,0.0112272164150212 +796,-0.022289463134033,-0.00819668195953622 +797,0.00898547427820843,0.00427512631169848 +798,0.0147549948900786,0.00617995388875832 +799,0.00841229030082597,-0.00504654503105582 +800,0.0376630006810276,0.0130268199233716 +801,0.00350761062624826,0.0015301836851638 +802,-0.0120697187028954,0.00190920191259249 +803,-0.00392009922735578,0.00152493328250102 +804,0,-0.00459590177725386 +805,0.029736933573573,0.000765327239392587 +806,-0.0183099334457606,-0.00926998877056743 +807,0.0132036849483927,0.00231221571051195 +808,0.0345524274334213,0.0181611426409383 +809,0.0177922252251879,0.00639097744360909 +810,-0.00496675463796332,-0.00491125821349672 +811,0.0175664954543261,0.0112066118789689 +812,-0.0205844676187165,0.0048327137546468 +813,0.018573149653102,0.0186063480481577 +814,0.00213349627555551,0.0162045372704357 +815,0.00303865123532685,0.0204585537918872 +816,-0.017939744146026,0 +817,0.0203029684664868,-0.00212085535097723 +818,0.020771512120385,0.000353286231564867 +819,-0.0156721518987341,0.00317013043924376 +820,0.0154303254937492,0.0063003500175009 +821,-0.0372424176352622,-0.0102545611649731 +822,0.000307999943138481,0.00771926315789479 +823,0.00122919468602387,0.00210080539568651 +824,-0.00743040201669333,0.00244498786046064 +825,-0.0392536036036035,-0.00210007000350022 +826,-0.00420045288535756,-0.0196288365453248 +827,-0.0184271166077153,0.00284697508896804 +828,-0.00829455927634756,-0.0166425838148548 +829,-0.00366293706293706,0.00789669749114513 +830,-0.0305419978293759,0.00107558268467486 +831,0.00273771370720656,-0.0105072101449275 +832,0.0121702509919033,0.0188410600370089 +833,-0.0226708695652174,-0.0141921761280931 +834,-0.0071944336304849,0.0168157775736752 +835,0.00714304347826088,0.013064936440678 +836,-0.018343014233336,0.0187110527127147 +837,0.00189406577614052,0.00482755172413791 +838,0.0179142685805674,0.0219818213538033 +839,0.0360779458381844,-0.00773554825121143 +840,-0.00495835140997817,0.00489849545136458 +841,0.0113359660534375,-0.00351123595505611 +842,-0.00927662337662334,0.000351000351000281 +843,-0.0240659941818865,0.00105189340813468 +844,-0.00926800894854602,-0.0160313501959387 +845,0.0157280925735253,-0.000356414838076047 +846,-0.012742719799763,-0.0192516520431657 +847,0.0171617799126365,0.00147170713760118 +848,0.0387056398402969,0.0194804841082426 +849,-0.0164465011286682,-0.0113097044874134 +850,-0.0210732932402642,-0.0197172998406733 +851,0.0152397545551072,0.0051813841598815 +852,-0.00194944807331672,0.00258397932816539 +853,0.00291564625850351,-0.00147878009163698 +854,0.0274102692243056,0.014930808992382 +855,-0.0335398307143922,-0.0125367989477582 +856,0.00292227272727284,0.00294117636245682 +857,0.00900900900900902,0.00146839207048451 +858,0.0272301078416207,0 +859,0.0332827271749141,0.0112522327133297 +860,0.0464512459839867,-0.00400867332329911 +861,-0.00902480506983487,0.000728259312755294 +862,-0.00674067955799078,-0.00586080607548741 +863,0.0107275170879995,0 +864,0.0382044554036048,0.00328587087571635 +865,-0.00560863681387335,0.0083273711684514 +866,-0.0122057932911255,-0.0188122457096183 +867,0.0148213629953732,0.00913742656661453 +868,0.0162311389989868,-0.00366841526045484 +869,-0.0182074509803923,0.000733174459927514 +870,0.00473939198553711,0.00763910512913786 +871,-0.0078673780349886,-0.00880733944954123 +872,-0.00281775147928981,0.0069242344415366 +873,-0.00823852179107721,-0.00919455648420167 +874,0.0316369136225178,0.00256782831988271 +875,0.0212706527340147,0.00908760450745183 +876,0.0151152503498144,0 +877,0.00789281767955798,-0.00917094644167278 +878,-0.029523237837311,-0.00516220482440259 +879,0.00939093053979441,0.00840946983546629 +880,0.000536122371057579,-0.00219857082453025 +881,0.00639493806500802,-0.00367782259368072 +882,0.0134070970869034,0.00293359002566926 +883,0.0165459160571828,0.0112400290065264 +884,0.0018064517061394,0.00253164556962026 +885,-0.00206868362716911,0.0212389380530974 +886,0.00309342645975004,-0.00462300837044784 +887,0.0147321811159674,0.00916131110504983 +888,0.0312499031126921,0.00525769347151432 +889,-0.0257445229681979,-0.0127795882144124 +890,-0.014336917562724,-0.00643086816720269 +891,-0.0121795309001359,0.00249461876317254 +892,-0.00783473491773317,-0.00107021045058124 +893,0.0367296566812924,0 +894,0.0114286153846154,0.00678817434798138 +895,0.0471203390257876,0.0147835269271384 +896,-0.00695896216959249,-0.00816181689141236 +897,0.00105317051216941,0.0181185011108536 +898,0.00980408762585834,-0.00490203098396464 +899,-0.0111790325443114,-0.0295601658255228 +900,0.00294426881880934,-0.00398121621357992 +901,0.00875547107498805,0.00967745519713251 +902,0.0463219103905332,0.0088809946714032 +903,0.0362138354555983,-0.00499821492324159 +904,0.00400763374074929,-0.00143013948624025 +905,0.000953174597243025,0.00391741452991442 +906,0.0196264277054474,0.0056657223796034 +907,0.0327244644892037,0.00807864447062337 +908,-0.0157941586193456,0.0182758965517241 +909,0.00493402831878965,0.0105765612615682 +910,-0.00625211428818575,-0.00102452182293309 +911,-0.00610560637229272,0.0164594894188781 +912,0.0127853890619462,-0.00134544231416075 +913,0.00994582278481016,0.00833889259506338 +914,0.00360367541595127,-0.000333700378168149 +915,-0.0054603563552708,-0.00995567809897946 +916,-0.000728560940412311,0.00184022819285989 +917,0.00884636120097192,-0.00369412633912085 +918,-0.00398785600781994,-0.00781827967914073 +919,-0.00130563068657122,-0.00452314344051476 +920,0.0434034972677596,0.00412905420904862 +921,0.00774587189749778,-0.00150372180451121 +922,-0.0207306475328473,0.00149194336038586 +923,0.01091603449134,0.0161468256880733 +924,-0.039564546528586,-0.005906238464378 +925,-0.0403636872889698,0.00514138817480722 +926,0.0471266689382794,0.00365898280278075 +927,-0.0459531230417197,-0.009604728481714 +928,0.00616305309734494,0.0105994513669791 +929,0.0110954218531285,-0.00477418288652222 +930,0.0178052472380356,-0.0055391432791729 +931,-0.00369767415777818,0.00623853211009181 +932,0.00582021802605765,-0.000734484024972441 +933,-0.000459730365887927,-0.00442637386844803 +934,0.020120269666058,0.00184090574374078 +935,-0.0247730412440979,-0.0074184349932654 +936,-0.0361926339285713,-0.000370983288646242 +937,0.0152300822590622,0.00443291466568157 +938,0.000941019696409571,-0.003707860723317 +939,0.00406199018709603,0.001480970011107 +940,-0.0134580447698598,-0.00595903165735568 +941,0.0158929874794023,0.00371061210721287 +942,0.00403466803335419,-0.00185877323420081 +943,0.00555570919065317,-0.00523168908819122 +944,-0.00621130434782619,-0.00149704346920074 +945,-0.0175383799992655,0.000747980553477825 +946,0.0101658739391343,0.00372578241430706 +947,0.00868217027342109,-0.00224044054367292 +948,0.000774500435290498,-0.00112153271028032 +949,-0.00420548168245254,0.00485070913622042 +950,0.0137487023372259,0.00186710224544048 +951,0.00569811933344059,-0.00574268737585428 +952,0.0063694545192253,0.00759874620060797 +953,-0.011019091129833,-0.0130869899923018 +954,0.00823170616610008,-0.00464033238049759 +955,0.00042562065541216,-0.00818717348927883 +956,0.00381577140668338,0.000779119594857932 +957,0.0179042594389236,0.0134511913912374 +958,0.00276802783490796,-0.000384467512495118 +959,0.00536891564170559,0.00382998836346268 +960,0.0181131377067782,0.0026737585943468 +961,0.0379713143815687,0.00380521294500708 +962,0.00812588696313392,0.0041681699192183 +963,0.0263719710252913,0.00264550274548386 +964,-0.0233903103300427,-0.0106951489686784 +965,0.0130645347743884,0.00531914893617023 +966,0.00126663298200909,-0.00611620795107034 +967,0.0242276119428814,0.00304878048780481 +968,-0.0274321042706576,-0.0065209052550824 +969,-0.00484943836525165,-0.00038376824189437 +970,0.0350941280676827,-0.00346553729170339 +971,0.0404112489660876,0.00153790849673203 +972,0.0427553444180523,-0.00308522946394145 +973,0.0190835242224237,-0.00542842165845591 +974,-0.0264206348611631,-0.00545812865497082 +975,-0.0115194798534492,-0.00667189952904231 +976,-0.0178214792397354,-0.00990883868410622 +977,0.0333219985646152,-0.00119043646069697 +978,0.00787135931920925,0.00670082748518607 +979,0.000674277963303052,-0.00475251485148509 +980,0.00813629122623435,-0.00357710651828298 +981,-0.00808979757101586,0.00474687481222799 +982,-0.00861291950618575,-0.00079180522565309 +983,0.0238261632247682,0 +984,-0.00140343856366224,0.0117785242158824 +985,-0.0299873982198118,-0.00355594640679351 +986,0.0120513181019333,0.00471887534408173 +987,0.0109262232661092,-0.0135512156237545 +988,0.00124010416666669,0.000796535213200533 +989,0.0156250720977732,-0.00802894419911683 +990,0.00534230221812278,-0.0113682911639582 +991,0.0253254213171797,-0.00366740001355344 +992,0.0165270713098913,-0.00946120976804643 +993,0.0169335930648419,-0.00454537171300121 +994,-0.0203129129334284,-0.00875368903709887 +995,-0.00658049400097491,0.00785773366418533 +996,-0.00117632932872969,0.00411865716150501 +997,0.000705266903609918,-0.00330578498736419 +998,-0.0186825380271837,-0.0117057274247491 +999,0.0245327091339855,0.00993377483443702 +1000,-0.0271179032185722,0.000413736036408836 +1001,-0.0190754693757298,-0.00207292694556701 +1002,0.00486729131175474,0.00453978539001246 +1003,0.0190976834997525,0.00980788760963991 +1004,0.0103944953840186,0.00810705310093232 +1005,0.028236869335098,0.0171314741035856 +1006,0.00411518089495979,-0.00641535659922398 +1007,-0.0434158594068837,0.00120136168207306 +1008,0.0173462514470525,0.0138231042654028 +1009,-0.0394735877064715,-0.0111820682435276 +1010,0.00758012267488802,0.00770795131845837 +1011,0.0396333200718986,-0.000812058498256417 +1012,-0.0444946506475542,-0.0127466694078948 +1013,0.0400215262309769,0.000400160064025531 +1014,-0.0218292069632495,-0.00928917609046837 +1015,-0.00667599480812207,0.00920368147258891 +1016,-0.0115362123934661,-0.0220858477674499 +1017,0.0144204646904771,0.0335967602212158 +1018,0.010156436444884,-0.00277443519619498 +1019,-0.0060757527223351,0.00512622219533824 +1020,0.0253028795342429,-0.00595009940301864 +1021,-0.0128135496183206,0.000792746730083258 +1022,0.0150375939849624,-0.000396550372583244 +1023,-0.00730332781209935,-0.00438064498683218 +1024,-0.015101510573902,-0.00843377510040168 +1025,-0.0227463627423093,0.00040144520272989 +1026,-0.0433637001678113,0.00359999999999999 +1027,0.0184067581706425,0.0118576684528723 +1028,0.0219408176040071,0.00745394272263628 +1029,-0.00537313302829763,-0.0011783582552379 +1030,0.0133927734375001,0.0093385988584203 +1031,0.0455393317955083,0.00848761574074079 +1032,0,-0.00699300699300712 +1033,-0.00151125933164285,-0.00388349514563112 +1034,0.00201096033210064,-0.00155585381391886 +1035,0.023564089347079,0.0073359459459459 +1036,-0.0044378202939932,0.00652090525508254 +1037,-0.0201207746478873,-0.0104651554443859 +1038,0.0133995282034857,0.000387446741086722 +1039,-0.00649353146853153,-0.000775416798161468 +1040,-0.0470711570886809,-0.0141565473849784 +1041,-0.00843876560024341,-0.00236495851931584 +1042,-0.037766858237548,0.00548800470403775 +1043,0.0102925779906513,-0.00433070866141744 +1044,0.0193891612866761,0.00431203449627609 +1045,0.00250713063987412,-0.00474124870569922 +1046,0.00277763896604555,0.00197168761941292 +1047,0.0304336907926911,-0.00395886777513852 +1048,0.0223800959652499,-0.00878590220503591 +1049,0.00861396524703645,0 +1050,-0.0186120717525146,0.00278773385950882 +1051,0.00660322292154443,0.00159041749502975 +1052,0.0178989359818693,-0.00319106501794967 +1053,0.00874253066302548,0.0094823788811687 +1054,-0.0299257399403739,-0.0107826673010117 +1055,-0.0177898113207548,0.000399121772420011 +1056,0.00562851782363982,0.000797806142800184 +1057,-0.0258455334531501,0.00079713033080907 +1058,0.0119534352672171,-0.0100644122383253 +1059,-0.00849320501407088,-0.00526106860627554 +1060,0.0389677745638638,0.0108086869495597 +1061,-0.0157794852276423,-0.011335991443887 +1062,0.00637775744766194,-0.00202843813387431 +1063,0.0162092540544181,0.0175368672778 +1064,-0.0039370867175089,0.00790830336463808 +1065,0.00366108796184846,0.0124951186062039 +1066,0.00286826619569227,0.00194851909586904 +1067,0.0192537915404953,-0.00697937157893097 +1068,-0.0014460592565423,-0.00939342502518299 +1069,0.0393609400324149,0.0233180810397554 +1070,0.0100847813450558,0.00114551351105327 +1071,-0.00785393819108623,0.00945537029291338 +1072,0.0161362734607396,-0.0295950545171339 +1073,-0.00433677203042476,0.0003892954305451 +1074,-0.00412571634484795,-0.00587313994232023 +1075,0.00818374593390557,0.0069983673016473 +1076,-0.00433792227538985,0.00116508737864072 +1077,-0.0269637052043072,-0.00546657534296854 +1078,0.00233922801545655,0.011959837962963 +1079,0.0101875202593193,0.0331965323833097 +1080,0.00069416933391172,0.0161468256880733 +1081,-0.0119409731720225,0.00256222547584188 +1082,0.00651298036873507,0.0158501440922191 +1083,-0.00797179385631403,-0.0232215637014952 +1084,0.0267001597444088,0.00804391224862888 +1085,-0.0101428997200807,-0.0148422629001016 +1086,0.0140908415495837,0.011734470113678 +1087,0.0455531473125011,-0.008133124145402 +1088,0.0331376866733838,0.00294876531326086 +1089,-0.0309189614936442,-0.0145848541510846 +1090,0.0190879541500723,0.00779224460882216 +1091,-0.0183584441313847,-0.00484716629381059 +1092,-0.0102553128899124,-0.00374255253527513 +1093,0.000871986066535592,0.00706060943887026 +1094,-0.00284208557752149,-0.0014886117793595 +1095,0.000655341969980951,-0.00223804558888634 +1096,0.00629620060790273,0.00813917838922749 +1097,-0.00699602068229035,-0.00222476834352116 +1098,0.00218154431225621,0.00662987108655607 +1099,0.0156752204353708,0.00110375275938194 +1100,0.00682444061576719,0.00730456564297178 +1101,-0.0136185245466041,-0.00661757328611867 +1102,-0.000865534419418665,-0.00666176905995562 +1103,-0.00246495470563055,-0.0055865921787709 +1104,0.022097246559025,-0.00901912780837554 +1105,0.029818690313779,-0.00112870579383003 +1106,0.00175095334145828,0.00112743325338478 +1107,-0.0114128099173555,-0.00490940332326284 +1108,-0.0243902232535733,-0.00646145976668411 +1109,0.0052135750866823,-0.00152261134373817 +1110,0.0261666872160394,-0.00767165324127347 +1111,0.0271656914893617,-0.0026923076923077 +1112,0.0103402337097331,-0.00619195046439629 +1113,-0.0207252918547191,-0.0137308748528835 +1114,-0.00404624261864194,-0.00591949486977106 +1115,0.0244360526315789,-0.00277008310249309 +1116,0.0118871278666163,0 +1117,-0.00748504837256555,0.00276243093922653 +1118,-0.0462020546945565,0.0128554733151539 +1119,0.0240733659901917,0.0104086734615005 +1120,0.0236895368600749,-0.00816171783909826 +1121,0.0152462157375786,-0.00901960784313727 +1122,-0.0128372844374298,-0.0208166533226581 +1123,-0.0183781167108753,-0.0125658694770976 +1124,-0.0208897880421581,0.00242620299231697 +1125,-0.007797290904325,-0.00569337128914195 +1126,-0.0184633519342209,-0.00531484077329684 +1127,0.0236480325644505,-0.00204829987709954 +1128,0.00481483315500623,0.00324280502634787 +1129,-0.010479041523988,-0.00570725618804512 +1130,-0.0235588023496726,0.001627960927961 +1131,0.0213751870324189,-0.0121016130656872 +1132,-0.00862385976456048,-0.000403551234723581 +1133,0.0198979225197733,0.0127489641434264 +1134,-0.0122994113262242,-0.0027966039633799 +1135,0.0163070681718817,0.00318598155372442 +1136,-0.0292365287578607,-0.0104628169014084 +1137,-0.017257243786102,0.0266353691094645 +1138,-0.0015651999455583,0.0100153316646892 +1139,0.0408672761357195,0.0188964481820275 +1140,0.0307195321170422,-0.000756353980470767 +1141,-0.0114472612084141,0.00825202550637665 +1142,-0.0152748310870687,0.0129581636430952 +1143,-0.0055090817110338,0.00147870615448075 +1144,0.00349359501757446,-0.00333827905557414 +1145,0.0174893592677347,0.00479885566629753 +1146,0.0058499022172619,0.00696484578574608 +1147,-0.00146470308208493,0.00328827171032986 +1148,0.0133268638400962,0.00472723636363642 +1149,0.0411085931227986,0.00865176640230708 +1150,-0.00666453802441813,0.00822306071587643 +1151,0.000619547717155251,0.00356255789098678 +1152,0.00615765086206896,0.00319602272727272 +1153,0.0234515788251892,-0.00895736295234683 +1154,0.00879156595452876,0.000358166189111804 +1155,0.0321603268578116,-0.00576368876080692 +1156,0.00459371258074723,-0.000360360360360417 +1157,-0.022907370166968,-0.00252890173410406 +1158,-0.00412867903842581,0 +1159,0.0141813854930852,0.00428421992145669 +1160,-0.0112781676413256,-0.00574506283662478 +1161,0.0301147480127515,-0.00577822297659009 +1162,-0.00135229218068239,0.00216212612612617 +1163,0.00175491363060095,-0.00216681104489672 +1164,0.00336335275245593,0.000721688947011549 +1165,0.0077426115467955,-0.00947169364401843 +1166,0.000933675609482247,-0.011795134972176 +1167,-0.0412442988301028,-0.00147652270210416 +1168,0.00235525066409321,-0.00631500742942044 +1169,-0.0150471951222273,-0.000743494423791938 +1170,0.00378262813417447,-0.00260901975400672 +1171,0.0101234498631209,0.00111693964568364 +1172,0.0189115238095237,-0.00486348671904228 +1173,0.00702515517359761,-0.00526513726965027 +1174,-0.00913425989724563,0.00187683940979126 +1175,0.0118549246837482,-0.0068027213455299 +1176,-0.0089709800190296,-0.00265251999441153 +1177,-0.029671084259327,-0.00456791016368481 +1178,0.00612044790652379,-0.00458891013384325 +1179,0.038260921029516,0.0257078986587184 +1180,0.00293445378151261,0.00482013366036838 +1181,-0.0079322669516609,0.000741052241570843 +1182,0.0251638532110092,-0.00297287253808987 +1183,-0.00328737694197084,-0.00186146679592453 +1184,0.0362335527111692,0.0106266394053998 +1185,0.0046269425331496,-0.00552697146377937 +1186,0.0151886667228803,0.00183898485329218 +1187,-0.0103883599201384,-0.00741018895887367 +1188,-0.0269123644826678,-0.00596347372344391 +1189,-0.0436487711165698,0.00703182827535164 +1190,-0.038769917203312,-0.0230973116243847 +1191,0.0203425376372772,-0.00227703984819729 +1192,-0.0214361654581295,-0.0026635843735319 +1193,-0.0247978301886793,0.00454541666666667 +1194,-0.0258537401611189,0.00377358490566043 +1195,0.039600025610666,0.00749996428571428 +1196,0.00675405897557869,0.00532859680284187 +1197,-0.00119339705604591,-0.00392293138648598 +1198,-0.0460470873786408,-0.0130058164739885 +1199,-0.00347944318776781,-0.00508347839203054 +1200,0.00443795851423127,-0.00853745328368781 +1201,0.0175846388606308,-0.0011148643626904 +1202,0.0350616709274008,0.00112405391067608 +1203,-0.0401791982636625,-0.0113680186194778 +1204,0.0433175198598096,0.00975613508442773 +1205,0.0228258438124331,0.00855651073498935 +1206,0.0191299269180986,-0.00261096615482904 +1207,-0.0039834967712264,-0.00411977512660022 +1208,-0.0175160111833822,-0.00602863579394741 +1209,0.0314077410855752,0.00673645234792117 +1210,0.00599307317073175,-0.00225052513128287 +1211,-0.00405825653757032,-0.00112658659882032 +1212,-0.00662056599715865,0.0155268027921183 +1213,-0.0365016926120108,-0.00669884604767976 +1214,0.0088276994979855,0.00994834229728605 +1215,0.00732651970453389,-0.00630330019663694 +1216,-0.0279089330210002,-0.00148529520980326 +1217,-0.0342090282688628,-0.000743218134522467 +1218,0.0125170262783444,0.00554320050048786 +1219,-0.00989946695095934,0.00697251376146784 +1220,-0.0270608638676814,-0.00925925925925926 +1221,-0.0117106818846227,0.00625690099374316 +1222,0.0379110541703874,-0.00221316849084591 +1223,0.0243612890023577,0.00440686742563349 +1224,-0.0164577676374256,0.00475149836434582 +1225,-0.0298554185996669,-0.00330036670333703 +1226,0.00541292908424163,0.00836363636363638 +1227,-0.0104703542520539,0.013983471279436 +1228,-0.0352694224235561,-0.00540731795241532 +1229,-0.00227014755959132,-0.0217311233885819 +1230,-0.0250996999634408,-0.0111731843575418 +1231,-0.0033356238604278,0.00592373195112922 +1232,-0.00756166992631473,0 +1233,-0.0136263325902515,-0.00408921933085513 +1234,0.0066933384320848,0.00771208226221083 +1235,-0.000478348214285567,-0.000735060666485162 +1236,-0.00111731843575436,0.0126995650471541 +1237,-0.0241949169950097,0.00289435611050486 +1238,-0.0207766298896689,-0.0113761100917432 +1239,-0.0163098878695209,0.00146577495544981 +1240,-0.0100014856596778,-0.00589760434565437 +1241,-0.0191875131164743,0.00257360284655867 +1242,-0.00361068161909676,-0.00480240118212043 +1243,-0.0256132371169118,-0.00856929955290613 +1244,0.0212926004228332,0.0139602870668732 +1245,-0.00868234524403083,-0.00702915253314281 +1246,0.0292768315408448,0 +1247,-0.00880064127684021,0.00441985267034991 +1248,-0.0196196940271001,-0.00147543336497841 +1249,0.00634718159811361,0 +1250,0.0290535445063403,-0.000369040590405869 +1251,0.0174451997164879,0.00550458715596325 +1252,-0.0113506610826244,0.00576372969272424 +1253,0.0282043718628523,-0.0116618492294877 +1254,-0.000140629840609007,0.011518813501757 +1255,0.0105717624148003,0.0151259670220995 +1256,0,-0.00294981036662449 +1257,-0.0121076456799362,-0.00465702774525716 +1258,-0.00609059507338808,0.0063104333193101 +1259,-0.0359501111063862,-0.0236865212612627 +1260,-0.0066468977852187,-0.00215791972378074 +1261,0.0013276146532641,-0.000863930885529293 +1262,-0.0432441219335815,-0.0060843111690568 +1263,0.00429053025268981,-0.0123185217773868 +1264,-0.0329218275695419,0.00438020148926841 +1265,0.0206169592502545,-0.0119681299631262 +1266,-0.0178289044547522,0.0139860145972909 +1267,-0.00364221717448714,-0.00394901255160109 +1268,0.0029998103568165,0.0302127234042553 +1269,0.015389336235038,0.0101095197978095 +1270,-0.0122738479436906,-0.000843212514469206 +1271,-0.0380594426023994,-0.0246219870410368 +1272,-0.0242596799862647,-0.022075055187638 +1273,0.0386039228597111,0.00744960560911489 +1274,-0.00827114769567653,-0.00263620386643228 +1275,-0.0276668018444535,-0.0115555555555556 +1276,-0.00468854686460451,-0.0167194313926539 +1277,-0.0198087096929204,-0.00408339364412921 +1278,0.0362080645161289,0.00316598809742253 +1279,-0.0256583562737738,-0.00866792883211673 +1280,-0.0392981186703734,-0.00967300827604837 +1281,0.0228011833156384,-0.00929795443979536 +1282,-0.0124978128797084,0.0169103755443499 +1283,0.0298079998283596,0.00860901676483909 +1284,-0.031619180535427,0.00135746606334847 +1285,-0.00629363603355051,0.019955610641047 +1286,0.00469805115712558,0.000443262430995744 +1287,0.00674049371409482,0.0225303726169843 +1288,0.028868712880058,-0.00874130282960225 +1289,-0.0127487347228229,-0.0168888444444445 +1290,0.00271242578890608,0.014022787028922 +1291,-0.0271634850369672,0.001749824945327 +1292,-0.0251696362936385,0.0129533246977547 +1293,-0.0296839341880252,-0.00729613765219482 +1294,0.0117341507368844,0.0168777208068473 +1295,-0.0166665070175606,-0.0149893361884368 +1296,-0.0220549574671875,0.00553662691652466 +1297,-0.00667868206936171,-0.00772536513842772 +1298,-0.00727274532231371,0.00851068085106384 +1299,0.0116801257861636,-0.0173160173160173 +1300,-0.0135884396712558,-0.0170709344115004 +1301,-0.0311821171358109,0.00134593982297258 +1302,0.0324613118696977,0.00845191281138791 +1303,0.0100188655951065,0.011433597185576 +1304,0.0221810733187286,0.0282051282051282 +1305,0.0113968260661695,0.00541662500000006 +1306,0.00823520090044889,0.00908336123383 +1307,0.030374212294529,0.00615519055579838 +1308,-0.00741326486729863,-0.0209467942628071 +1309,0.0333892209178228,0.0156700618556702 +1310,0.0348734123693384,-0.00789696624675665 +1311,-0.011610538678021,-0.00291784076698636 +1312,0.0143779340613565,0.0127571610188133 +1313,0.0205488587756206,-0.00371747227251021 +1314,-0.0188871885960881,0.00329361863756203 +1315,-0.0162177942470855,-0.00289025610612118 +1316,-0.0375115919261625,0.0049301972062448 +1317,-0.0187136336306453,0.00409169377693556 +1318,0.00749175913050959,0.000817579755420312 +1319,-0.00659858612095172,-0.0012279574293901 +1320,0.00453554881027363,0.00407668144815807 +1321,0.0377727168965045,0.00365556443316147 +1322,0.0225066774416,0.00323886626563302 +1323,-0.00577015847818205,0 +1324,-0.0202823305118793,0.0126339964535223 +1325,0.0156757763975156,-0.0195160023608118 +1326,-0.00460558623103803,0.00194776003116491 +1327,0.00737358785763771,0.00271950271950259 +1328,0.0136726553409543,0.00425531914893629 +1329,-0.0264257849996618,0.00385360293435052 +1330,-0.00752099868349892,-0.00425700464396287 +1331,0.007168414192605,-0.0015504264166832 +1332,0.0131171851601649,-0.00389097261124618 +1333,0.00775087699614648,0.00541791795665633 +1334,0.0433687586722681,-0.00898082745096337 +1335,-0.0207054256545645,0 +1336,0.0380494230769231,-0.00707829335430597 +1337,-0.00386100386100395,0.00664062500000007 +1338,-0.000275944850423003,0.0119644924739482 +1339,0.00178994910615315,0.000771307365985329 +1340,0.0211590566037735,0.00192455735180911 +1341,-0.000404408763353811,0.0132928218761868 +1342,-0.000944763858158346,0.0193668528864061 +1343,-0.00284196759764735,-0.0022396042463754 +1344,-0.00162678602250723,0.0026061056364071 +1345,0.0197981124183586,0.0117733259749816 +1346,-0.00817148002219739,-0.0104089219330855 +1347,-0.0226027110902624,-0.0090022505626406 +1348,0.036303526669493,0.0107607046099924 +1349,0.0239660478808653,0.00919117613267735 +1350,-0.0157047903600259,0.00874635536638641 +1351,0.00779126057169486,-0.00145989051094891 +1352,-0.000389737589117506,-0.00182815356489935 +1353,-0.0283196118300568,0.000365533612370812 +1354,-0.0105291038138378,0.000365363523369912 +1355,0.0172460192493489,0.0204008582533694 +1356,-0.00735004677268486,-0.000716368194842301 +1357,-0.00821872744122387,-0.00179400782942215 +1358,0.0054936355617654,-0.0054113277565413 +1359,-0.0111095241536507,-0.00108335135126946 +1360,-0.00792023728307087,-0.00544662289591052 +1361,0.0269731586377959,0.0240963155243202 +1362,-0.00319917351107472,0.0052873456014329 +1363,0.0050397217527704,0.00281195069202289 +1364,-0.0149414055046629,-0.000351617427861608 +1365,0.00322011296552639,0.00280501402524547 +1366,0.0120075167476854,0.00492434048540273 +1367,0.0185366803518699,0.000703022822389377 +1368,-0.00505865533838328,-0.00601131520469188 +1369,0.00771302672795151,0.00105962561143159 +1370,0.0062051225796386,0.00141097001763669 +1371,-0.02213648772371,-0.000352858151023344 +1372,0.000124297443085015,0.00665969131932378 +1373,0.00814013330217237,0.00626952303272463 +1374,-0.0242546096890041,0.00347101712846298 +1375,-0.0022791213253877,-0.00139030239833165 +1376,-0.00881334758428028,-0.00139227288548553 +1377,0.0178145650757174,0.00381414701803049 +1378,0.00993667830319171,0.00379968898792095 +1379,0.0235293398494605,0.00103516218081436 +1380,0.0106791579236659,0.00956937799043066 +1381,-0.00264672755902966,-0.000683994528043883 +1382,0.0145820746887968,0.00374787052810913 +1383,0.00764712887196735,-0.00410537119397882 +1384,-0.0113028553087109,-0.00377743805709354 +1385,0.0182221586263288,0.0118764170979444 +1386,0.00279559690633436,-0.00238091836734703 +1387,0.00717016256480882,0.0163934097154035 +1388,0.0240405753494292,0.00100270721925141 +1389,0.0189347256753283,0 +1390,0.0144058059587472,-0.00537634408602151 +1391,-0.0233414890548975,-0.00949796472184536 +1392,0.0247249215711779,-0.00306230020627088 +1393,-0.000108965147547114,0.0060872844098749 +1394,-0.00152730740721566,-0.00715255425229719 +1395,-0.00372321514943529,-0.00824175795873091 +1396,-0.00219487486616683,0.0071598704398227 +1397,0.00164343163065941,-0.00686580868059751 +1398,-0.0160302573308499,-0.00482921697136954 +1399,-0.0320541927377254,-0.0048526863084921 +1400,0.0138227401027443,0.0187074829931972 +1401,0.00552120538495986,0.0047393701848555 +1402,-0.030299499053895,-0.00373771661569828 +1403,0.0326782470742871,0.00406088000206024 +1404,-0.00564656126482215,0.017293016295311 +1405,-0.00946197033570319,0.00397485909324741 +1406,-0.0263249795249795,-0.0100368688536925 +1407,0.00973236009732354,0.00333447815938643 +1408,-0.0182869638374339,0.00332336324360257 +1409,-0.0224366468327701,-0.00366911274182787 +1410,-0.00851581518875684,-0.0114710192803988 +1411,-0.00846518197852591,0.0116705901967322 +1412,0.000122706076870325,0.000999333777481717 +1413,-0.00803766548828568,-0.00133422281521011 +1414,0.0467939768976897,-0.00401872056199864 +1415,-0.0124104649495059,0 +1416,0.0217137284413526,-0.00167735664801596 +1417,-0.00717226337448554,-0.00573549277110305 +1418,0.00491400491400495,0.00968930838623455 +1419,0.0456700234435066,-0.0101145987862441 +1420,-0.0125259805570991,0.0338762529682002 +1421,-0.0124709785196472,0.0163408528145098 +1422,0.0255406292704687,-0.00160458921694479 +1423,-0.0226435083013959,-0.00192926045016073 +1424,-0.00644063233170846,0.00353587259608254 +1425,-0.0197028351089815,-0.0126953780174276 +1426,-0.0127187632755981,0.000650650618087087 +1427,0.0115340939138353,0.0112576391122548 +1428,-0.00521749589414475,-0.021018028866403 +1429,-0.010189681304876,0.0049019281045752 +1430,0.00651617399911364,-0.00229279389804156 +1431,-0.00455871404235953,-0.00164045275590545 +1432,0.00209959171702322,0.0123137066651424 +1433,-0.011682830108162,-0.00981681969295873 +1434,0.000117946911004998,-0.0122556471594685 +1435,-0.0096497264545973,-0.019587976373253 +1436,0.0024955437906378,-0.00338871568959671 +1437,0.0232153798814233,-0.00476673460106464 +1438,0.000348131805008213,-0.00375943267259046 +1439,-0.0349465332684922,-0.00966183574879231 +1440,0.0189678727372261,-0.00138213540490208 +1441,-0.00212512396694221,0.0024129265770425 +1442,0.00703405585966851,0.0132653061224489 +1443,-0.00105628448604954,0.00203662600260106 +1444,-0.00447957106493836,-0.0250521572720947 +1445,0.0124563335253241,0.00312174817898022 +1446,0.0369955497421026,0.0177172061328792 +1447,0.00346332249510306,0.00136097316641617 +1448,-0.00493992354462962,-0.016954982698962 +1449,-0.00632696856113505,0.00584795321637433 +1450,0.00803688679781476,0.0106495917642884 +1451,0.028141511277952,-0.00284798860804563 +1452,-0.0193186404083195,-0.0118876080691642 +1453,0.0105422494019144,-0.00762254111152606 +1454,0.021204228542727,0.0100611210923463 +1455,-0.00535804857993844,-0.00796809098268406 +1456,0.00318181832644622,-0.0106149707174231 +1457,-0.000341048107835392,-0.0010992670905362 +1458,0.0211417593794698,0.00546647210399149 +1459,-0.0166289585235765,-0.0269461836431954 +1460,0.0177776678518445,0.0248175547445254 +1461,-0.00480066997433667,-0.00439879016133467 +1462,0.000223306162593749,0.00182945481156237 +1463,0.0168989348447741,0.0179662234998203 +1464,0.00382589649625806,0.000359195402298907 +1465,0.0254607755406413,0.0238429172510519 +1466,0.000957843773497724,-0.00884329678103997 +1467,-0.00470486526946116,-0.00892219842969308 +1468,0.0243088056787565,0.00708713703356268 +1469,-0.00408545983568553,-0.0180375186882222 +1470,-0.0238095345345345,-0.00289435611050499 +1471,0.00544006365183593,0.00396400000000002 +1472,-0.0090410828655805,0.00430574078558513 +1473,0.00790181493211682,-0.00468640951694304 +1474,0.00899466666666666,0.00466454952764444 +1475,-0.00243978993911329,0.0221052280701755 +1476,0.00433034440917504,0.00175127852018488 +1477,-0.0109983337534081,0.000700070003500196 +1478,0.0063660263901108,-0.00598591549295781 +1479,-0.017928512604725,-0.0103165773633376 +1480,-0.00433887623386484,0.0150665727026429 +1481,-0.021609008590126,0.00244669687358628 +1482,0.0130154212069751,0.00417678384963453 +1483,-0.0119535361156222,0.00415944540727906 +1484,0.000553108394842813,-0.00874125874125874 +1485,-0.00144009075882969,0.00313701627267275 +1486,0.00769476767494271,0.011371433494142 +1487,0.0271628604586524,-0.00833908935583432 +1488,-0.00289572072072066,0.000347342815305966 +1489,0.0221289574044659,0.00689889617109342 +1490,0.0353096317280453,0.00378006872852244 +1491,0.0108085974183647,0.0338645739088786 +1492,-0.00120234467733132,-0.00601202384729378 +1493,-0.00331759324419412,0.0151315460526316 +1494,0.00916428899797913,0.00686053554849612 +1495,9.95617539797441e-05,0.0116240882022631 +1496,0.00406702724202064,-0.0134162308055049 +1497,0.0299269519858088,0.00488440263381313 +1498,0.0108509323871717,0.00130084552845529 +1499,0.0170284424764805,0.000974691326358261 +1500,0.00428542939658226,-0.00654025506867235 +1501,0.0128747468663831,0.0100355781817928 +1502,0.00566932155879043,0.00258314506241998 +1503,-0.0171130859375,-0.00226533980582533 +1504,-0.00167689581373394,0.00547151593176703 +1505,0.0191885961405592,-0.00290510006455777 +1506,0.00527175963214184,-0.00486539085306527 +1507,0.0175031254018295,0.00708531423785236 +1508,0.013739581611565,-0.0117301397285716 +1509,-0.00575780879215934,-0.00359715500327013 +1510,-0.0198752824995508,-0.0135896586012594 +1511,0.0257876879347893,0.0101706036745406 +1512,0.00638392665297632,0.0100682361134058 +1513,0.0372147530798056,0.0102860813151372 +1514,0.019968685699882,-0.0136852390457727 +1515,-0.0235641634533081,-0.00326907486106567 +1516,0.0241489905559135,0.00423173841900195 +1517,0.0109236404838405,-0.00457812295618061 +1518,0.00784533328894634,-0.00957408353997737 +1519,0.00346575334350578,-0.0226198506880537 +1520,0.00337382113625497,0.0143094181134582 +1521,-0.0357767035527082,-0.000999300466355767 +1522,0.00157840162296715,-0.0056951423785594 +1523,-0.0245106627867804,0.0177689706406373 +1524,0.0105262320221572,0.00425953473132372 +1525,0.0145228221793702,-0.000983929157100726 +1526,0.0366936744995145,0.000655522779416687 +1527,-0.0115640386796705,-0.00164152992913761 +1528,-0.0173590782828618,-0.0149949683438853 +1529,0.0189669480809634,0.00694900750989435 +1530,-0.0073171628395825,-0.0247541200406919 +1531,-0.00539481798568669,0 +1532,-0.0224821982656265,0.00101626016260166 +1533,0.0183772255179033,0.0117174753358729 +1534,-0.0110318514518235,-0.00134096547100235 +1535,0.0121271958025697,-0.0122158470382031 +1536,-0.00643248397189916,0.00907871553463339 +1537,0.0464732401787117,0.00932711525649571 +1538,0.0420338546905407,-0.00100033344448153 +1539,-0.00340132275132284,-0.000667367389635116 +1540,-0.0151154449438979,-0.00334777357389452 +1541,0.0152625386077633,-0.0184112171837709 +1542,0.00030212251908834,0.00542556798914887 +1543,0.0125307676029744,0.0192883272364483 +1544,0.0265737243385423,-0.00838363514419853 +1545,0.00267921077507334,0.00699304006017177 +1546,0.00583114958129517,0.0243664709432596 +1547,-0.00571970766636856,0.00452778137128082 +1548,0.0134285999999999,0.0187242145350682 +1549,0.0260869903969742,-0.011232349165597 +1550,-0.000347954061295605,0.000961878776470658 +1551,0.0172665301685405,-0.0029306415802879 +1552,-0.0149461807759699,-0.0200748901012212 +1553,-0.0171108240543207,0.000340170068027178 +1554,0.024000043555554,0.0105801710095622 +1555,0.0109164922906401,0.00745260840108401 +1556,-0.0351914984481076,-0.0193370517726882 +1557,0.0251386181187023,0.0196344610821103 +1558,-0.00162918602233358,0.000338341805020011 +1559,-0.00761146211519522,0.0150000333333333 +1560,-0.0111199759110401,-0.0205503316109485 +1561,0.0218326711297077,-0.00279427184052638 +1562,-0.030315255107198,-0.0127343119915105 +1563,-0.0344453720044713,-0.00604982206405687 +1564,-0.0243485783630442,-0.0104279399650464 +1565,0.0410454281415252,0.0155752566371681 +1566,0.00130904933041525,0.000353857041755186 +1567,0.0419377769827457,-0.00676879230495195 +1568,0.0372802430005283,0.00531534391620641 +1569,-0.0109865343322857,0.00282685522356373 +1570,0.0312638735683048,0.017702187355161 +1571,-0.0230623669040633,-0.0112319761319762 +1572,-0.0428165167754917,-0.0200501253132832 +1573,0.0159266060890497,-0.00492087856165627 +1574,0.0161034871705595,0.00974587539157675 +1575,0.0394006376331765,0.00277677899259909 +1576,-0.0129620020465446,0.0148737461086129 +1577,-0.0245883429522905,-0.0165259839477503 +1578,0.0361349187846943,0.00140445926966298 +1579,-0.0090043689938604,0.0155547874179053 +1580,0.00993780101983635,0 +1581,0.00255107142857152,0.00788751714677642 +1582,0.0115985879979827,-0.00413219682740369 +1583,-0.00288992112318811,-0.0107901496693352 +1584,0.0178114538124171,0.00691323885240233 +1585,-0.00106548975308351,-0.0090687129403557 +1586,-0.00327854049171631,-0.00879662209711471 +1587,0.0266389457276375,0.00802792321116918 +1588,0.0278527571680838,0.014786795048143 +1589,0.031988420524268,0.0162381263950653 +1590,-0.00268370749906776,-0.0020338644067797 +1591,0.0111973724581844,-0.000339097999321857 +1592,-0.00671137021292289,-0.00101836391779914 +1593,0.0183574258877136,0.0104132012092711 +1594,0.0133164785524327,-0.00235686860751282 +1595,-0.0033561614962837,-0.00848896405809969 +1596,-0.0107526433691757,0.00875119517843133 +1597,0.0322700226779196,0.0043566018766756 +1598,0.0384730269878325,0 +1599,-0.000297873227689709,0.00863787375415287 +1600,-0.00641524667896612,0.0043003638769434 +1601,-0.0281082602244747,-0.0106987629555333 +1602,0.030014953841644,0.00861783228372561 +1603,-0.00161694212939348,-0.0043275298159944 +1604,0.0153319732908595,0.00923479551451188 +1605,0.0183502513840752,0.0244530244530244 +1606,0.00432277220971841,0.00256739409499364 +1607,-0.0180729955969665,-0.0328140536957242 +1608,0.0225968804071498,0.0111438872500819 +1609,-0.0012370569835327,0.0112 +1610,-0.0172337944430387,0.0231322288215067 +1611,0.00210711002041528,-0.0133063060457043 +1612,0.0102138612356648,0.0281135788585887 +1613,0.0155304186947135,0.0336865244855603 +1614,-0.0133909356946707,0.00674581741106807 +1615,0.00228883265473291,0 +1616,-0.00907725314707674,-0.00898450857609591 +1617,0.0292507226015547,-0.00878879428728372 +1618,-0.0294685718790277,-0.0250563063063061 +1619,-0.0231774546986936,-0.0156203654582966 +1620,-0.011016457967534,-0.00503560456372055 +1621,0.0125608750525873,0.00968031680844824 +1622,-0.0148825675837285,-0.00382806253910667 +1623,0.0290198395791559,0.0179295247004323 +1624,-0.0023151193436438,-0.010225007303535 +1625,0.017954996128658,-0.00351800048320139 +1626,0.0129855386590329,0.00272232296665679 +1627,0.0300188606150134,0.0189910973593146 +1628,0.0220847738776669,-0.00327481393271798 +1629,-0.011359883470093,0.000297559541521281 +1630,-0.0187856819587538,-0.0206561373424142 +1631,0.00528338242987932,-0.00457729630759831 +1632,0.023427207406446,0.011577337527564 +1633,0.0223880750263094,-0.000579206503886754 +1634,-0.000463410736178265,0.0066167725326108 +1635,-0.0300731936981734,-0.0193548398448588 +1636,0.0121555220539788,0.0107340582902798 +1637,0.00505650849857974,0.0212947183050903 +1638,-0.00756337501836504,0.00254885294395761 +1639,-0.0324837583106495,-0.0267520217142198 +1640,-0.00776044406122583,0.0100749274568261 +1641,0.000764564220183509,0.00143716581094665 +1642,0.0218471340008852,0.0205517736486488 +1643,0.034552116426918,0.0149750689136142 +1644,0.0245975704225351,0.0142154448214628 +1645,0.000753973348771494,0.000819420900862487 +1646,-0.00191365757511578,-0.0177926044539168 +1647,0.00630528968539132,0.00415276866425153 +1648,-0.00883481448409171,-0.0146067704835264 +1649,-0.0166289877168037,-0.0107892387623724 +1650,0.000461699069093025,0.00424082567828166 +1651,-0.0135667759592471,0.00664547799348509 +1652,0.0454292203806447,0.0287455873619509 +1653,-0.00775190414978252,-0.00320410700820815 +1654,-0.0308645723550871,-0.0123857859038633 +1655,0.0340642508197239,0.0139575171258367 +1656,0.00776926495646924,-0.00362425238223339 +1657,0.00291274796511528,-0.00302947609993778 +1658,-0.0367514853749514,-0.0328535366975451 +1659,-0.0429967236596933,-0.00941108103858776 +1660,0,-0.00672365505123294 +1661,0.0116315256475957,-0.00368107384546478 +1662,0.00484174639683753,-0.0124222666949606 +1663,0.023492974117221,0.0122698473785182 +1664,-0.0159514401497049,-0.0086121229343451 +1665,-0.0062685912240184,-0.0142247149991211 +1666,0.0337902300572239,0.0154060929764039 +1667,0.0306682196266375,-0.0124069483306257 +1668,-0.0367611562008557,0.00458719124911786 +1669,0.0350849850863213,0.0214088059878731 +1670,-0.0152205252801291,-0.0161403157894737 +1671,-0.0227071741437526,-0.00281491907107665 +1672,-0.0200522656697463,-0.00887468938587149 +1673,0.0132449923035053,0.00177175768149388 +1674,-0.0187592388303816,-0.00427042704626334 +1675,-0.0174117531795036,-0.0151734104046243 +1676,0.00233845822872649,0.00574712643678161 +1677,-0.00495175816319527,0.0190274495781343 +1678,0.030985646242447,-0.00424624911535739 +1679,-0.0391136596240952,-0.0268381975427133 +1680,-0.02702714358983,-0.00778069655427943 +1681,0.0231904925816396,0.0217470097861545 +1682,-0.0010441802386667,0.018847830055198 +1683,-0.0294384921260857,-0.0199492564381574 +1684,0.010797464654293,0.0107642981426516 +1685,-0.0213885112745087,0.00641704122698904 +1686,-0.0104737283111366,-0.0227035285610732 +1687,0.0149288649763258,-0.000349336116375505 +1688,-0.0105046993878468,-0.0236052225896002 +1689,0.000946902849413517,0.0120141347001461 +1690,-0.0242923802839148,-0.0279524448653934 +1691,0.0270128452911278,0.0191911925976697 +1692,0.0448649160095357,-0.000342817963661228 +1693,0.0102850551283543,-0.00102954704974431 +1694,0.0281263341246818,-0.0203081239603684 +1695,-0.0342958561748359,-0.0181818188300114 +1696,0.0192993147332354,-0.0050160874238624 +1697,0.00341463414634148,0.0165609237688839 +1698,-0.0138314665401045,-0.0116598079561042 +1699,0.0271749692073405,-0.00551724137931035 +1700,0.00960286753062806,0.00548696844993142 +1701,0.0180255051638976,0 +1702,-0.0199554956823411,-0.0142608695652174 +1703,-0.00924463184246673,0.00484593301647396 +1704,0.0201229508920664,0.00755760880942604 +1705,0.00433078215595929,-0.00784041367927338 +1706,0.00404370513310663,0.0067256991150442 +1707,0.0346128804365448,0.0241796537416355 +1708,0.00511354780244679,0.00924017827652907 +1709,0.040673112775374,0.0260000333333333 +1710,0.0423406740363698,0.0138067061143985 +1711,0.0358115021845478,0.0110062267612021 +1712,0.014572712071159,-0.0289755087961366 +1713,0.0160525334701369,-0.0122207057339632 +1714,-0.0063236619718309,-0.00420753856942496 +1715,0.0336110842669745,0.0299319727891156 +1716,0.00519514192118623,-0.00547195622435021 +1717,0.0205163706144892,-0.00550206327372765 +1718,0.0103396818851354,0.0208754538425774 +1719,-0.0222903551969949,-0.0167751460724117 +1720,0.0133470171114935,0.00204991458831567 +1721,-0.00877619476582414,0.00408298754960829 +1722,0.0250318089669572,0.020006702234078 +1723,0.0094756846538961,-0.00705167874238822 +1724,-0.0198646511357318,0.00501166054126298 +1725,0.01828913700217,0.01707720797776 +1726,-0.0112461895851696,-0.0153384794931645 +1727,-0.0218953979612538,-0.0179905301422447 +1728,0.0123722274030843,-0.0243393254520166 +1729,-0.0432683584020326,-0.0180530973451328 +1730,-0.00643893279588517,0.00772739753169648 +1731,0.0227410945022044,-0.0149732625658918 +1732,0.0282143229400557,0.0137131500100861 +1733,0.00310147054276738,-0.00922643718949606 +1734,-0.00171406074240708,0.00459198179413576 +1735,0.0109138810838114,0.000353142655367198 +1736,-0.0142396401315383,-0.0187050726152904 +1737,-0.0039380806805433,-0.0179421463911441 +1738,-0.000971926103679286,0.00835156106203478 +1739,0.0223828912502325,0.0268550539524754 +1740,-0.0204158371040724,-0.0294652237177156 +1741,-0.022190396760196,0.00793933626630594 +1742,0.0217086726998491,0.00645392636980732 +1743,-0.0267131242740999,-0.0283922555902561 +1744,-0.00516327640268337,0.0285517715858274 +1745,0.0252770302266288,-0.00483926719668167 +1746,0.0252990027883867,-0.00451392376784458 +1747,-0.0149929618183787,-0.0119465921274277 +1748,0.0118849862459092,0.0162461458693398 +1749,-0.0321218398557234,-0.0247963159759121 +1750,-0.0121852794399094,-0.00929571002129814 +1751,0.000519474747474761,-0.00865485034258929 +1752,0.023338423417243,0.0218694885361552 +1753,0.010758945454035,-0.00434314167003765 +1754,-0.0158265468227424,-0.00436201381315885 +1755,0.0414472671569418,-0.0238183467131245 +1756,0.0114036391443046,0.00384915319476516 +1757,0.0287737715651826,0.00192089888893966 +1758,0.0244499805068226,-0.00696328820116043 +1759,-0.0304160747800061,-0.0245739199365835 +1760,0.0134744947827351,0.00864443973892181 +1761,-0.0234674013056958,-0.00792083168316833 +1762,0.00747644927536225,-0.00397614314115314 +1763,-0.00582041807288338,0.00944767441860458 +1764,0.00685548748397975,-0.00858042155149854 +1765,-0.0263547713412513,0.00620155062796708 +1766,0.025502255043265,0.0238365872115021 +1767,0.0190599740932642,0.0275228975535169 +1768,0.0170614520026091,0.0233627336896693 +1769,0.0175130910683013,0.0045748760960732 +1770,-0.00585084588356864,-0.0198289665563361 +1771,-0.0146177397058864,-0.01100621025919 +1772,-0.0223846515479513,-0.00632911367369013 +1773,0.0216212978372223,0.0299778312361214 +1774,-0.00379040759110321,0.0135085437571575 +1775,0.0352697619644886,0.0263064353468339 +1776,0.0231043968398362,-0.00824369175627251 +1777,0.0179369998419228,0.00782364837042502 +1778,0.0143335246588563,-0.00752422070942309 +1779,0.000111565910704168,0 +1780,-0.0203710191085974,-0.00359586492613678 +1781,-0.00199559270192826,-0.00433362208979344 +1782,-0.0107185554369279,-0.0135432284040995 +1783,0.0131369421521917,-0.0010992670905362 +1784,-0.00889328146583183,-0.00404713024282562 +1785,0.0141410771439683,0.0237068965517241 +1786,-0.0245725760649088,-0.00650759219088936 +1787,0.00627734400227301,-0.0143014301430143 +1788,0.00589687962797692,0.0105224604688847 +1789,-0.00535286059629326,0.0136006437508716 +1790,-0.0248333809620724,-0.02381824756987 +1791,-0.0200974852902699,-0.00701110701107006 +1792,0.00461192492911014,-0.00743494423791832 +1793,-0.035603522473573,-0.0208728652751422 +1794,-0.00649276471433456,-0.02729044834308 +1795,-0.014311037868397,0.0179939120216726 +1796,-0.0411392149486923,-0.000766321839080347 +1797,-0.000461710978069678,0.0128593414198433 +1798,0.00681295146333254,0.0329187637161668 +1799,-0.0249093123075781,0.0101376173013172 +1800,-0.00343149130277028,-0.0319353597537515 +1801,0.046685025679544,0.0273159144893112 +1802,0.0483996546646625,-0.00397456279809227 +1803,-0.0331913337090876,0.00157236629039441 +1804,0.0145286853171636,0.010886392336174 +1805,0.0244069353110972,0.0334461468077359 +1806,-0.0287741812227074,0.0288320802919707 +1807,-0.0416055428297089,-0.00793055135951655 +1808,-0.0312145767877349,0.00265957446808512 +1809,0.00701637145543632,-0.00956106040851798 +1810,-0.0118323190012135,-0.0318386112932114 +1811,-0.046098592482575,-0.0108650647722524 +1812,0.0105647806843232,0.0319578896423095 +1813,-0.0191948010294749,-0.0163934889068073 +1814,0.0443807343672533,-0.00434782608695658 +1815,-0.0320661678594665,-0.0134347962382447 +1816,-0.00589005235602093,0.012820556462398 +1817,-0.00875406130386681,0.0288372558139534 +1818,-0.0246141111325186,-0.00938971875069104 +1819,-0.0117126098463421,-0.00471688656995815 +1820,0.0196863414595409,0.0152905700667395 +1821,0.0442104544930717,0.0244021473889702 +1822,-0.0251429704913014,-0.013353165843381 +1823,0.038282664647994,0.0281983812010443 +1824,0.00339800113136116,-0.0199029126213592 +1825,-0.0188372059871704,0.000485249855155225 +1826,0.0332756802668876,-0.0046487600904566 +1827,-0.0371503860084513,-0.0168067218063697 +1828,0.00301908762203044,-0.0186529025208758 +1829,0.00633328931110809,-0.00941412084654186 +1830,0.00740915721231765,0.00518677358989758 +1831,-0.0157573265201314,-0.00573818466353661 +1832,0.00897339429094993,-0.00209100899587084 +1833,0.00923675105919358,-0.00896624519864171 +1834,-0.00370840185759184,0.0196484488107549 +1835,-0.0110134974928353,0.00514408409752648 +1836,0.0404948284892738,0.00925925925925932 +1837,-0.016770652013674,0.0115606936416186 +1838,0.0182308092581533,0.0303181396462156 +1839,-0.0234047140649151,-0.0307377561475409 +1840,-0.0216557866378477,-0.00256810490847987 +1841,-0.0108311252992817,0.017658980827447 +1842,-0.0233869524292132,0.00779625779625772 +1843,-0.0127534672870109,0.0238457140459521 +1844,0,0.0052325578353164 +1845,0.0142794057184624,0.024390131842889 +1846,0.0120136444831817,0.0016988108720271 +1847,0.036836496424241,0.0210643558168317 +1848,-0.0129032583420055,-0.0255827743035816 +1849,-0.0318428943047353,-0.0286549707602338 +1850,0.00609295596434831,0.00697793918292757 +1851,0.0301679970972423,0.0215337173564223 +1852,0.0326915169011536,0.0315360630722279 +1853,0.0272168953815843,-0.0113168204055134 +1854,-0.0104317493152732,0.0213430516055727 +1855,0.0246801644601542,0.00259610591900321 +1856,-0.0011093687194306,-0.00890518596123634 +1857,-0.00169551771518575,0.00165568423533744 +1858,-0.0411517996850772,-0.0117253489670574 +1859,0.00614035107917822,0.00499999999999999 +1860,0.0365651277629832,-0.00232958648806046 +1861,0.00998237176373815,-0.0123821351640411 +1862,-0.0220877126174554,-0.0328866626065772 +1863,0.00134372404686028,-0.0167182662538702 +1864,-0.015578860763917,-0.0227992400253325 +1865,0.00486593855684198,0.00566750629722932 +1866,0.0307117818751664,0.014888398580124 +1867,-0.0415004782238876,0.000654450261780091 +1868,-0.0263506921712272,-0.00858085808580852 +1869,0.0380903157635638,-0.00587895355673127 +1870,-0.00437819234070279,-0.0216216216216218 +1871,-0.00534478080031074,-0.0246153846153845 +1872,0.0183214934822843,0.00353767709538198 +1873,0.000984077927730011,0.0105017509044195 +1874,-0.000295324345854194,-0.00468933204509556 +1875,-0.0108919997954555,-0.022308979364194 +1876,-9.39337035771718e-05,-0.00279647666646951 +1877,0.0356667721852513,-0.00103670290115594 +1878,0.028278273989137,-0.0288000533333333 +1879,0.0207682814495159,0.00053304904051181 +1880,-0.02999999026087,0 +1881,0.0113480391094884,0.0224075548510913 +1882,0.02718068845411,0.0244025927808847 +1883,0.00540674587578189,-0.00408371618172546 +1884,-0.0161440796600145,-0.0124031007751937 +1885,-0.00569532481630956,-0.0276155071694107 +1886,0.0159617247111237,-0.029166613064239 +1887,-0.0242323744494761,-0.0317033835731658 +1888,0.0103482264433404,0.0189772282012245 +1889,-0.00205736969607876,-0.0101170388649076 +1890,0.0310207172086011,0.00739952431289657 +1891,0.00665429343351935,-0.0250000000000001 +1892,-0.00669886967802986,-0.0235825388861013 +1893,0.00990879862116656,0.0158024691358025 +1894,0.00548362084532502,0.000493583415597313 +1895,0.0110814444272128,-0.000988142292490273 +1896,0.0365715658925378,-0.00247642384960752 +1897,0.0048224101290341,-0.0202122273768454 +1898,-0.00158479995215712,0 +1899,-0.0266542923705696,-0.0243271739130435 +1900,0.00100630075832892,0.00514933058702376 +1901,0.00293273905996759,-0.00517598343685308 +1902,-0.0413920424145308,0.0286575680571929 +1903,-0.0412586994727592,-0.00708855696202529 +1904,0.0281414814209631,0.0154535900026715 +1905,-0.00432934171694196,0.00791295785919673 +1906,0.03339914751993,0.0184466504854369 +1907,0.00627704158323793,-0.0142787303928474 +1908,-0.0125527294050283,0.0034347401096536 +1909,-0.0136092446448705,-0.0282542381432897 +1910,-0.0137142857142856,-0.00354430379746837 +1911,0.0170612174591415,-0.0104322409554019 +1912,0.014955135371261,0.0156480187947178 +1913,0.00544882572561154,0.0210626146990241 +1914,0.0254036955478746,0.0238318224299065 +1915,0.00100365616887476,0 +1916,0.0103582619419405,0.0151863782788772 +1917,0.0194100734741886,0.00458085203847906 +1918,0.00642841635150044,0.0140017621500345 +1919,-0.00570043823359795,-0.00408163283816928 +1920,-0.007917573036384,0.00135874094202892 +1921,-0.0176113505307896,0.020842528640467 +1922,-0.00214366561017262,0.0122646079719666 +1923,-0.0217566264914927,0.0214316330904415 +1924,-0.00646624278493114,0.0038428693424425 +1925,0.00190681338995552,0.00127936028659438 +1926,-0.0056792519345256,0.00971279560810808 +1927,0.00220777162813578,-0.00765957446808509 +1928,0.0258101667021818,0.0236809306190278 +1929,-0.0153598956232143,-0.0339346634907791 +1930,-0.0250728611697955,0.0025706512425022 +1931,0.0162237418408911,0.00553894356791415 +1932,0.0260260760760761,0.0134511133479985 +1933,0.0181129172110947,-0.0188437259100642 +1934,-0.0033105655424971,0.0213747266816962 +1935,0.00322964260879278,-0.00378632730332355 +1936,0.0028004901911536,0.011231322328148 +1937,-0.0200685332100311,-0.0286692328340081 +1938,-0.0101724481688895,-0.00732758589105225 +1939,-0.0237075112533791,-0.0297381256219208 +1940,0.0132634231192208,0.00132969864050094 +1941,-0.00630687885010271,-0.00534750421802577 +1942,0.0155934445396059,-0.00223322921988515 +1943,-0.000492022204371559,-0.00519251383848923 +1944,0.00433841507133392,0.0130932891533024 +1945,0.0278748065140083,-0.0061753805609147 +1946,0.0075861486157067,0.00978393763620305 +1947,-0.00924036067719494,0.012082118405155 +1948,0.0333673671906946,-0.00120971779071437 +1949,0.00684320784177453,0.0297339604747246 +1950,0.000687058075820235,-0.014712245144429 +1951,-0.000625012496093605,0.0153386457323667 +1952,0.000187477344482729,0.0138655468010733 +1953,0.0169543278697012,0.000419991617807357 +1954,0.00367222589499556,-0.0123298894557824 +1955,0.0182659490997432,0.0130088124213176 +1956,-0.00531564482029612,-0.00252419015565834 +1957,-0.00266488400057597,0.00167992447206746 +1958,-0.00732110923459348,-0.014919011718628 +1959,0.00966707176808259,0.00424448235333123 +1960,-0.00479596882960235,-0.00597775405636206 +1961,-0.0116071974769908,-0.0125378734344087 +1962,0.0150021288790114,0.0169996592860322 +1963,0.0184656699279164,0.00381033006730185 +1964,-0.00983328348522944,0.00295483313825104 +1965,-0.0450529552926805,-0.0189247741935483 +1966,0.0268902859295052,0.0139949109414758 +1967,0.00364518829106695,0.00295983086680762 +1968,0.0104010158648287,0.000844951415293753 +1969,0.0170783534206553,0.0303154444899631 +1970,-0.000946445071488087,0.00933437537883014 +1971,0.0020071486773906,0 +1972,-0.0118870379533724,-0.00366598792936814 +1973,0.012039007988716,0.00567039264194437 +1974,0.0035282800836592,-0.000405226904375974 +1975,-0.0109386179384679,-0.0012170385395538 +1976,-0.017604385751913,-0.0270833333333333 +1977,-0.000726486253018037,-0.0058675186141023 +1978,0.0082257043879054,0.0103691410050128 +1979,0.0220774352651047,0.0207148651212483 +1980,0.0151506902425479,0.00805797743755044 +1981,-0.0104593020811196,-0.00161416458377067 +1982,0.00822897561958685,0.00879996000000006 +1983,-0.00232338519605728,-0.00563149615319804 +1984,0.00897992202325313,0.00559995999999998 +1985,0.00822112326257851,0.00793654730410528 +1986,0.0368944308988714,0 +1987,0.014521842161779,0.00395249027480196 +1988,0.00254027128083016,-0.00158349168646073 +1989,-0.0054341863833457,0.00158098820478207 +1990,0.00249348436151903,0.0182383003492433 +1991,0.00549864150943403,-0.00233376127319179 +1992,-0.00913937547600908,0.00886669202518531 +1993,-0.00795091332789016,-0.0152642667422413 +1994,0.0203062423868184,0.0108401471157568 +1995,-0.00415363040324537,-0.00310679611650479 +1996,-0.00016186674122257,-0.00116644639060828 +1997,-0.0248258098815336,-0.0337620592348094 +1998,0.0218496536306149,0.00320512833353873 +1999,0.00602085790752761,-0.0129870135140834 +2000,0.0209988585074169,0.0187177212776694 +2001,0.00126154530856143,-0.000398446215139404 +2002,-0.00517778823526629,0.0222049084534476 +2003,0.00630014723631564,-0.00469671251259157 +2004,0.00178193487171672,0.00660964255869534 +2005,-0.00415748872915994,0.00348702066977995 +2006,0.00663914994699584,0.00577812040747762 +2007,-0.00383082495713063,0.0280793720733572 +2008,-0.0133474978638927,-0.00792449056603773 +2009,0.00953336112293184,-0.00531103925223673 +2010,0.0447775670350565,0.000379218794872174 +2011,0.0300605452853743,0.00790063957863054 +2012,0.00136448833734139,0.000376081233546505 +2013,-0.00721057395506293,0.0230125523012552 +2014,-0.0258904234207219,-0.00314795383001049 +2015,-0.0258316374826573,-0.0203426124197002 +2016,0.0201171130166528,0.00708713703356268 +2017,-0.0416445030950769,-0.0176703570140642 +2018,0.00427864889014442,0.00538016518580223 +2019,-0.00296688749581153,-0.0127133304499336 +2020,0.010796126811045,0.0188880263324315 +2021,0.0165953360294079,0.0144011244960002 +2022,0.00159515283315401,0.00175319074333794 +2023,0.035342041857469,0.016212487064505 +2024,0.00748839290822557,0.000689417442261397 +2025,0.00132843293164981,0.00377750673840969 +2026,-0.00623793241650743,0.00817438664256183 +2027,0.0120322959341728,0.0091123189035545 +2028,0.0105502393543969,-0.00304664850891513 +2029,0.00178740100072279,0.0153333 +2030,-0.00504950963803415,0.00365330442865148 +2031,-0.0271807098693509,-0.0110812622202397 +2032,-0.00295119057952344,-0.00540175538819192 +2033,0.0289489174072065,0.010688042395189 +2034,-0.00704358718832939,-0.00100304246071543 +2035,-0.00122437435721631,-0.00402816367814153 +2036,-0.0179470663337861,-0.0195072559721853 +2037,-0.00340153574210695,0.00646042162529748 +2038,-0.0149261311102117,0.0199933355548151 +2039,-0.00377103897148118,-0.00772327039209982 +2040,0.00127234835004595,0.00167613141133086 +2041,-0.0163458973165364,0.0050033355570381 +2042,-0.0231278593444184,-0.0063779454052385 +2043,0.00484547298883831,-0.00744000676361176 +2044,0.0400909603635442,0.00471218460828624 +2045,-0.0069745203273333,0.00535661180593863 +2046,-0.00904095681556832,-0.000670050251256182 +2047,0.0117270793079985,0.00863503790650817 +2048,-0.0144718341835273,-0.00299803464357098 +2049,0.00440960871030703,0.00265780730897016 +2050,-0.0165224958280387,-0.0168918918918919 +2051,0.0182674106063667,0.0250329701899548 +2052,0.0141250065195733,0.00524243119266052 +2053,0.0106309090447922,0.00973393900064895 +2054,0.00860958423637425,0.00323415265200522 +2055,0.0331994010754095,0.00258064516129027 +2056,0.0121449553423752,0.00545396214308635 +2057,-0.0120038114011888,0.00700856983142936 +2058,0.0120014744850093,-0.0138888893374964 +2059,-0.00431828876459656,-0.015747998687664 +2060,0.0153263726710265,0.0151858153413307 +2061,0.00172587002300982,0.000322932826968099 +2062,-0.0161634073493399,-0.00617481312967177 +2063,-0.00185201824414477,-0.0105089980128408 +2064,0.00660442947624033,0.0068492824527071 +2065,-0.00890010449526193,-0.0128840436075322 +2066,-0.0115058876227048,-0.00665114732291318 +2067,0.013909314094039,0.00922570016474468 +2068,-0.00582534506744987,0.019702810713915 +2069,-0.0169960668721808,-0.00324037578611872 +2070,0.0423641940873761,0.00771700964630228 +2071,-0.0156330797920319,-0.0166721150702845 +2072,-0.0175902633149966,-0.0193268910363212 +2073,0.026197862805929,0.0122783424283766 +2074,0.0139360978925901,0.00610169491525423 +2075,0.00933234522484721,0.0057296932928885 +2076,-0.0431030924869369,-0.0174897119341564 +2077,0.0137112722289006,0.00809574093629005 +2078,0.00576944245889928,0.00175681664640957 +2079,0.016915103486726,0.00593782766111873 +2080,-0.0373860495343388,-0.028376400862069 +2081,0.0174459941545381,0.00642398286937901 +2082,-0.00690296222754917,-0.0108225472879706 +2083,0.0105510219147202,0.0103534808996787 +2084,-0.00548376358469725,-0.000714540907467064 +2085,0.0178687626288572,0.00462307949420059 +2086,0.00853376123766774,-0.00680275689223053 +2087,0.0148476061410306,0.0148148148148149 +2088,-0.00419644028149989,0.00839454354669459 +2089,0.00187254225595033,0.0131169835387292 +2090,-0.00624786554140447,-0.00695165102537372 +2091,-0.00623688766065044,-0.00139227288548553 +2092,-0.0170506448198649,-0.0141193081539005 +2093,0.0179408055211882,0.0104784844735762 +2094,0.00663367818498177,-0.00104891608391609 +2095,0.0128041982759104,0.00244157656086503 +2096,0.0209101339559277,0.0120606478290833 +2097,-0.000670371086141951,-0.0196767751116224 +2098,0.00229301586712413,0 +2099,0.00654932362181204,0.00593782766111873 +2100,0.0376341669306387,-0.00139905561385106 +2101,0.000593344913091439,0.00139710099186527 +2102,0.0176666347248388,0.00590277798273528 +2103,0.00809458306645649,0.00586813965716746 +2104,0.00292690010491304,0.00719674434544203 +2105,0.0048543423893953,0.00307482063546293 +2106,-0.0123302764205756,0.000682861021411389 +2107,0.00271775902690478,0.00272386779966396 +2108,-0.00147239870840446,0.0087748231108615 +2109,0.00235921656959382,-0.000675379916400579 +2110,-0.0107986456692914,-0.000675937816830031 +2111,0.0111234749226987,0.000337837837837891 +2112,0.0158083338871372,0.00937078344614403 +2113,0.00440340495965726,-0.00775713322091072 +2114,-0.0120009002250283,0.0119960013328891 +2115,0.0184062409563122,-0.0118004045853001 +2116,0.00641160146355687,-0.00236566407570126 +2117,0.0146703502962172,0.00604635539133355 +2118,-0.00361694452693852,-0.0163878109802727 +2119,0.00411062011600783,-0.00445819615912209 +2120,0.0105665101262107,0.00375811411001023 +2121,0.00438343061416051,0.00170532060027288 +2122,0.0044056358552912,0.00102214650766614 +2123,-0.00270889347432566,0.0190508021390374 +2124,0.00760987646486435,0.013843111404087 +2125,0.00206368396391883,-0.000659630606860144 +2126,0.000577486270408178,0.00426932662498106 +2127,0.0132687449506492,0.0120051589876703 +2128,0.0129760682515167,0.00161972783868709 +2129,-0.00614392888497943,-0.00652106292794251 +2130,-0.00133562955163257,0.0119201349252533 +2131,-0.0101394250361083,0.0102040813072678 +2132,0.0272075324173271,0.00191140496691323 +2133,0.0160986563995518,-0.0138888893374964 +2134,-0.00493503896103897,0.00482166490447881 +2135,-0.0284689831385583,-0.00842790923824956 +2136,-0.00168189982780693,0.00194111937884176 +2137,0.0262060928765309,0.00290322580645161 +2138,-0.0289172188973558,-0.0150621802533667 +2139,0.0197483842246619,0.010369409903778 +2140,-0.0296505263192077,-0.0242284110264988 +2141,-0.010508203445447,-0.00938020100502513 +2142,-0.0395533417077499,-0.0300207039337474 +2143,-0.0440515047566226,-0.0272953217758002 +2144,0.00986276321427375,-0.00207763165088743 +2145,0.0212522604305514,0.0190218064190962 +2146,-0.0144371878045787,-0.00683997948016417 +2147,-0.0178867908376607,-0.0107155202212236 +2148,0.00157347183321843,0.000345577044036696 +2149,-0.00737035951139784,-0.0118881468531468 +2150,-0.016187549718633,-0.0127478753541078 +2151,0.0188180757383149,-0.0100596497764531 +2152,0.0179931723047693,-0.0216977540921203 +2153,-0.00628001786624225,-0.00767165324127347 +2154,0.0137418868345723,-0.00775197704465029 +2155,0.0151439441573751,0.00347624578896275 +2156,0.0118203867055211,0.0215419509275114 +2157,-0.00315446956348699,0.0148921066682016 +2158,-0.0200048135808591,-0.0197706595582974 +2159,-0.00645730547535698,-0.00716845849587978 +2160,-0.0252055537513478,-0.0129084302981674 +2161,0.029180450946295,0.00839995999999999 +2162,0.011833813355164,0.0257209664848013 +2163,0.00302815795995089,-0.00627450980392157 +2164,0.0282880684111533,-0.00987841945288746 +2165,0.016993416595925,0.00189613189624066 +2166,0.0080272298888825,0.00264750368201576 +2167,-0.0144353848607287,-0.0188824655536622 +2168,0.013438006060566,-0.00698490492821113 +2169,-0.010628520036903,-0.0181746747599634 +2170,-0.0073234314990124,-0.0123999600000001 +2171,-0.00862393746057418,-0.0191601704378243 +2172,0.0059635147890068,-0.00904985639859538 +2173,-0.0184470993094954,-0.0130377661886136 +2174,-0.0122746498218181,0.00647668393782377 +2175,-0.00623636121089411,0.00472711645896001 +2176,0.00679723310932842,0.0230898404701931 +2177,0.0388139937647043,0.0197530460803722 +2178,-0.00224732851226818,0.00450639082343304 +2179,0.00589321723646927,-0.00576843840131852 +2180,-0.00905589808430873,0.0225533628674989 +2181,-0.0218030265576333,0.0119378834834018 +2182,0.00367984011648918,0.0121856127285529 +2183,-0.00509047120591997,0.00274398275186212 +2184,-0.00620246481225597,-0.0249096434274667 +2185,-0.0175909836766725,0.0134760602457392 +2186,0.0250506005579603,0.0098116169544741 +2187,0.009243199339207,-0.0143311698116573 +2188,0.018454169633442,0.0278637383900929 +2189,0.0035392629749031,-0.00116237896793404 +2190,-0.00254546429412898,0.0111111494252874 +2191,0.0181763283167376,0.00229357798165133 +2192,-0.0119559284322943,-0.00809244670163981 +2193,-0.0110418080986186,0.0030733767547684 +2194,-0.00334302040816323,-0.00852390579325467 +2195,0.017567313280247,0.0197493733383972 +2196,0.000305409845822338,-0.00649847094801216 +2197,0.00399275213354525,-0.0167120093276331 +2198,-0.0048911195091495,-0.0141899481990561 +2199,-0.00619013774354394,0.00704493178258055 +2200,0.00634187968038926,0.00234291283315455 +2201,-0.00902047734112572,-0.0215397287594735 +2202,-0.0368519970718574,-0.00844726434242701 +2203,0.00635454527788321,-0.0151082482645979 +2204,-0.0107989689794601,-0.00368852459016393 +2205,-0.0058955578777077,0.00408163265306128 +2206,0.0171846005230178,0.00849854344389086 +2207,0.00434662719205687,0.00443195004029011 +2208,-0.0127661473422075,-0.0155482399530181 +2209,-0.000961420449292637,-0.00866698307882783 +2210,-0.0156224738735247,0.00205934917383233 +2211,-0.0244654269064848,-0.00998336064961056 +2212,0.0121865252660268,0.00248958506224072 +2213,-0.0108622940807582,-0.0117548278757347 +2214,0.00554591091157224,0.00459674049310487 +2215,0.00362885774692319,-0.012267386305727 +2216,0.00246816936589931,-0.00724328961411537 +2217,0.0288818436198398,0.0179916736401672 +2218,0.00729660581179079,0.00167088547740663 +2219,0.0255053514547945,0.0144092213088012 +2220,-0.00372364899681507,-0.0137730389721636 +2221,0.0194355426135372,-0.00125361470956958 +2222,0.000570175232027506,0.0033319450229072 +2223,0.00129077859976671,-0.00670859538784068 +2224,0.00380511086706555,-0.00319616447478375 +2225,0.0079934759231286,0.00358280240514321 +2226,0.0229598088058623,0.00829052506908803 +2227,-0.00435775881024668,-0.00436165758769447 +2228,0.0277513671662124,0.00825800235941794 +2229,0.00190287915927967,-0.0111332007952287 +2230,0.0138314890918107,-0.0219422583526103 +2231,0.00404951906615753,-0.00736803110929189 +2232,0.0116310829325232,0.0141243335704465 +2233,-0.00398405704014526,-0.00202187626364732 +2234,-0.0149898487066863,-0.00202593192868723 +2235,0.00177468773427119,-0.00734693877551019 +2236,-0.0127577131799803,-0.000408329930583976 +2237,-0.00435361733514338,-0.0045119361981925 +2238,-0.0139248098903588,-0.0196570054370557 +2239,0.0356475261780478,0.0180698151950719 +2240,0.00086454921940903,0.0032746623004502 +2241,0.000103661574655716,0.00407668144815807 +2242,0.0164926453936038,0.001627960927961 +2243,0.00436760560422791,0.000813338755591687 +2244,0.0106518223084192,0.00966572694321379 +2245,0.00533088211285724,0.0201262825572218 +2246,0.00717799309752863,-0.00435988902100672 +2247,0.0394929316767601,0.0121378617017282 +2248,0.0102515663601121,0.0108442680092951 +2249,-0.0274968439044064,-0.0286852589641434 +2250,0.00334910326487011,0.008297076582263 +2251,-0.00326305561480862,0.00432734067663259 +2252,-0.00666733660736103,-0.00157608359243829 +2253,0.00443592485122218,-0.00754259596893239 +2254,-0.00256453833254023,0.0274130888030888 +2255,-0.000714598939105362,0.00575811922296047 +2256,-0.00848519550637773,0.00875197835799165 +2257,-0.0141537310979011,0.0146231346081741 +2258,0.0105200672384783,0.0103896471098461 +2259,0.0167442687047823,0.0160641845952605 +2260,0.0109974518702454,-0.0133184604765646 +2261,0.0171866744038287,0.00405298467402305 +2262,-0.00359473707201253,-0.0108007076350092 +2263,0.00467639192556517,-0.0014920179594188 +2264,-0.00803595937794156,0.00519487921354805 +2265,0.00613153150083584,-0.000371195234922284 +2266,-0.0043581494038096,-0.00974516491754119 +2267,-0.0279843207993113,-0.0156071564522269 +2268,-0.00322427690416333,-0.00267171745527793 +2269,-0.0180709040878617,-0.015110500391728 +2270,-0.00362732790773134,-0.00938596010950336 +2271,0.0257108780042263,0.0104489164086687 +2272,-0.00554228454678336,-0.00583880864776927 +2273,0.0211577105897989,0.00155456665371169 +2274,-0.0149968871506047,-0.0242833987148329 +2275,0.0192820650480568,0.00985415806645022 +2276,0.000634933333333265,-0.00475251485148509 +2277,0.00590147692775745,0.00237056508773474 +2278,-0.0183833966617908,-0.00197937450514646 +2279,0.0165929199868823,0.0299539543028435 +2280,0.0055005499339813,0.0316101908371212 +2281,-0.00223665256758257,0.00481128793486307 +2282,0.00846476344504,-0.0067064083457526 +2283,-0.00609658394020835,0.00111652396291309 +2284,0.00872242636436338,0.013220675725303 +2285,-0.00390915061295973,-0.0055391432791729 +2286,0.0024956170840969,0.00950987564008784 +2287,0.00345077557526448,-0.00330275229357798 +2288,-0.00430862033974602,0.0133961255106399 +2289,0.000218482338513999,0.00825849192100549 +2290,0.00277045292691194,0.00500178635226856 +2291,-0.00199616038189192,-0.0032258064516129 +2292,0.00496565294298601,-0.00323628202935201 +2293,0.00613819256844841,0.00926259351620944 +2294,0.00295237431564814,0.00425686398521229 +2295,-0.00482069822921,0.00388685526101965 +2296,0.00332633663928173,-0.00819376558603489 +2297,0.00242727738615753,-0.00214209210996068 +2298,-0.000553367752240809,-0.00143013948624025 +2299,-0.00503614583115261,-0.00430876122082585 +2300,-0.00341019950476565,0.00214976710856319 +2301,0.0212701063087953,0.00250178699070766 +2302,0.00519186187968874,0.00391598433606264 +2303,0.00811375427238381,-0.00321428571428571 +2304,-0.000809091203313456,0.0284524635669674 +2305,0.00711058548402173,-0.00769230769230765 +2306,0.0184844559630506,-0.0134656631277698 +2307,-0.00237093140364674,-0.00391312686185963 +2308,0.00807156364778642,0.0154114891562693 +2309,0.00364498952247761,-0.0127704145877824 +2310,0.00803485440851372,0.00388685526101965 +2311,-0.0229853974232604,0.0125610956036288 +2312,-0.00534176583608434,-0.00667372696430368 +2313,-0.0185163126951378,-0.00423276895943562 +2314,-0.018241928757089,-0.0117773019271949 +2315,0.031797280162346,0.0126849546400619 +2316,0.0115699915854421,0.00246052715428723 +2317,0.00712524059509743,0.0114662956405039 +2318,-0.00186477670537996,0.00311742282239616 +2319,0.0094895468803718,-0.00072124053371798 +2320,0.016549320013201,0.00928903179707031 +2321,-0.00206204400485536,-0.00178951317861441 +2322,-0.00256228443597218,-0.0104882820976492 +2323,0.00883113131313125,0.0043212099387829 +2324,0.0152892751872591,0.015248261870629 +2325,0.00934691125701068,0.00282885421397256 +2326,0.00826442097534295,-0.01108337544095 +2327,-0.0102104164004944,-0.0170908727272728 +2328,0.00647334714528004,-0.00917431192660551 +2329,0.00648695647293235,-0.000734484024972441 +2330,0.0020006111919706,-0.010014874258712 +2331,0.00889481750352035,0.00222061435973352 +2332,-0.0134802844895299,0.00698269044405331 +2333,-0.0220789328243238,-0.00554323745540414 +2334,-0.0352914039228943,-0.0176757803685597 +2335,0.0117039259393361,0 +2336,0.000758306115137485,0.00672394471423234 +2337,0.0151654666781832,-0.00828629033093372 +2338,0.014297431960619,0.0011287057938299 +2339,-0.0111648909125405,-0.0160550458715596 +2340,0.00798022283267566,-0.00306748466257676 +2341,0.0206919927036936,0.0045801906648783 +2342,0.001222180589505,-0.00963391099676644 +2343,-0.0130571789664414,-0.00894253533991191 +2344,0.00112437598696982,0.00733311462755688 +2345,-0.00933414779888546,-0.00077253768916718 +2346,-0.0167306204770169,-0.0188901613537977 +2347,0.0151141054284832,0.0105140186915888 +2348,0.0044405531797652,0.0003892954305451 +2349,-0.0235359329125065,-0.0118157546993208 +2350,-0.0467257888532709,-0.0242032261313745 +2351,0.0138357310174261,-0.000403551234723581 +2352,-0.01200593049269,0.000806371000256938 +2353,0.0254347158907718,0.0209238452427951 +2354,0.00556863108912015,-0.00118581032354976 +2355,-0.00592590574713437,0.00939710221624504 +2356,0.0167550742085828,0.0104609845199917 +2357,0.0186892071149103,-0.00741600283309914 +2358,-0.0031388938454354,-0.0082645021645021 +2359,0.00148159621862758,0.00313848568065902 +2360,-0.00668326001735543,0.00468570852457218 +2361,-0.000344325836404762,-0.00866490778514804 +2362,-0.0114639015881604,0.00353222135007853 +2363,-0.00987722395002467,0.00273968699568244 +2364,-0.00678685416148848,0.00892172191925047 +2365,-0.00251450423044022,0.0141491013384321 +2366,0.000118309278010644,0.00190843504166285 +2367,-0.00901327808432402,-0.00498661296509398 +2368,-0.0128779267455051,-0.00346420323325635 +2369,0.00481351085928716,-0.0132605699399599 +2370,0.0110968735637066,-0.000390167787365033 +2371,-0.0111605590321932,-0.00826117230527143 +2372,-0.01514690070857,-0.0019707921966579 +2373,0.0132288925320811,-0.011563038277512 +2374,0.0177884039545837,0.00278330019880717 +2375,0.0132881838339312,0.0236801242236026 +2376,0.0236384041372616,-0.00940438871473362 +2377,0.00654376363275829,0.00351429115524052 +2378,-0.00739111051955432,0.0221458563518191 +2379,-0.000771149531579677,0.00720235053837579 +2380,-0.00980532974260412,0.0123549237122771 +2381,0.00965355466979555,-0.0304783564814814 +2382,-0.0111181501483032,-0.0101325019485581 +2383,0.00551411811693424,0.00581166237162586 +2384,0.00391907481855905,0.0095932467226879 +2385,-0.00813269812024305,-0.0104690961431138 +2386,-0.000259577102759333,0.00309238488239712 +2387,0.00270424337541929,-0.00154862562911344 +2388,0.00529403915901537,-0.00623295675886235 +2389,-0.006393459629678,-0.012223934849214 +2390,-0.00190442342574926,-0.00157981832543445 +2391,-0.0178266872770241,-0.011586056269035 +2392,-0.0216021725412867,-0.0187220594220594 +2393,0.00844887546855478,-0.00203915171288747 +2394,0.0109747611963341,0.00688541891918106 +2395,0.00193820216866172,0.00121351137595121 +2396,-0.0158403341857774,-0.00939154757043703 +2397,-0.00245221898018659,-0.0132395531650805 +2398,-0.00665277090441067,-0.00082815734989661 +2399,0.0136290282971653,0.00165361712882939 +2400,-0.00531339699906445,0.019456789623024 +2401,0.00714261011401181,0.00363489499192245 +2402,0.0299571750846684,0.00999600159936026 +2403,-0.00671472046293075,-0.0237413016782645 +2404,0.00170471543957733,-0.0086705618773972 +2405,-0.00774510511097602,-0.0129652446675032 +2406,-0.0159744913735001,0.00416493127863396 +2407,-0.0180701367812362,0.00207809651197407 +2408,0.000601986530267037,-0.00501244757675668 +2409,-0.00226251476775359,0.000834641103282228 +2410,-0.0171524481828181,-0.0105440746749926 +2411,0.0021432731104002,0.0137272040878867 +2412,0.017567064944857,0.00743179221435976 +2413,-0.0174139439147343,-0.0202189974726202 +2414,-0.00488990359757943,0.0108333333333334 +2415,-0.0153000692196989,0.0107172300082441 +2416,-0.0156665733910539,0.0085818965501388 +2417,0.0306793455970409,0.0117124798061389 +2418,-0.00833822569561332,-0.00446247464503055 +2419,0.0260242421089073,-0.000812058498256417 +2420,-0.014953295404137,-0.0135802474724382 +2421,0.00960454845063254,0.0232557373354937 +2422,-0.00365226312547636,-0.00702568278588284 +2423,0.00485595665643111,0.0146153461538462 +2424,0.022111524276373,0.000768639508070698 +2425,0.0176572963196403,0.000384210511555456 +2426,0.00662381189692383,0.0113938093429548 +2427,0.0152296050926136,0.0164363093014569 +2428,0.00697781557884656,0.00557206537890052 +2429,-0.0161298978494379,-0.0108900116744278 +2430,-0.000706767509147407,-0.00339103227614804 +2431,0.0119267276237457,0.00337957203828665 +2432,-0.000698747785193767,-0.00604457899677292 +2433,0.0195933055967698,0.0115758770882793 +2434,0.02375606652599,-0.00714558104550578 +2435,0.0259757179781156,-0.0177384337671261 +2436,0.00100706443464594,0.00147605166051661 +2437,0.0152809303930723,0.0156193601300631 +2438,0.0130488961869233,0.0136151558581154 +2439,0.01217128210704,0.00605413105413099 +2440,-0.0275605719577138,-0.0274423710208562 +2441,-0.00196520598699915,0.014069228501776 +2442,-0.00343168159048722,-0.0116787956204381 +2443,0.0158033980038663,-0.00476714338100473 +2444,-0.0201588878158871,-0.0175373514006474 +2445,0.00932319324459438,0.00445768945022296 +2446,-0.0100369115937791,-0.0101246495327102 +2447,0.00872698500899995,-0.00358569721115527 +2448,0.0167445160520928,0.0160721285770286 +2449,-0.0077008094633052,-0.00631163708086786 +2450,-0.000105136157027358,-0.00396039603960402 +2451,-0.039311563349626,-0.0235103364410214 +2452,-0.0281437443742977,-0.0257796684315871 +2453,0.00115025534761413,-0.0029190575479566 +2454,0.0459315226504428,0.0299352358388041 +2455,0.00685844782811876,0.00722895582329306 +2456,-0.00658247599163207,-0.0134310134310134 +2457,0.0257051544768521,0.0269306930693069 +2458,0.0163858735664311,0.0228328173374613 +2459,5.12808031237669e-05,0.0148684712161647 +2460,-0.0134084656578189,0.0139097744360903 +2461,-0.00997298359751743,-0.0148798555848858 +2462,-0.0186606092947386,-0.0158914734841656 +2463,0.0149839517437629,-0.0113680517444139 +2464,0.0109133856220509,0.0188461538461538 +2465,0.00054673034733733,0.00839050375249829 +2466,-0.0176433643074872,-0.0186479797979799 +2467,0.00647471453084239,0.00579370435665143 +2468,0.01216784647057,0.00576044524729475 +2469,0.0120215876190803,0.0173584528301887 +2470,0.00931392267885663,0.0181548721748795 +2471,0.0188265039464706,0.00479354702088691 +2472,0.0270388449740068,0.00330753411641071 +2473,0.00440194950298638,-0.00852479614529279 +2474,0.00613399475573069,0 +2475,-0.00280274322490829,0.0149371849474376 +2476,-0.00979310955681793,0.00895983638488519 +2477,-0.0056673887593128,-0.00351837372947629 +2478,-0.0164887034783943,-0.00510801551638438 +2479,-0.0242578677260289,-0.0224990768380505 +2480,-0.0179391162950395,-0.0146758249214911 +2481,-0.00563756496446151,0.0319652328334649 +2482,0.0152015390266064,0.0212436856409303 +2483,-0.00233190502689677,0.0170843204252088 +2484,-0.0204705328864565,-0.00342857142857142 +2485,0.0488927708764278,0.025612508329157 +2486,0.0286791909469391,0.00222218518518523 +2487,0.00472417756875882,-0.00148371667224469 +2488,0.01527797223175,0.00809422369389256 +2489,0.0321564082687386,0.0033003300330033 +2490,-0.0047857804884793,-0.0107487027427724 +2491,0.00532869694960212,0.012083449728431 +2492,-0.00837313741054146,-0.00332832827927785 +2493,-0.00621069805305499,0.00441822533136966 +2494,0.0317914058350019,0.00110338355633009 +2495,-0.0201121221283428,-0.0141738908681048 +2496,0.0070644081934386,-0.00827374952989851 +2497,0.0101065058899787,0.0242201834862385 +2498,0.000641987921935559,-0.0100074128984433 +2499,-0.000419951580710297,-0.0131431097687987 +2500,-0.020856948909958,-0.0246248172373991 +2501,0.00226465611437072,0.000768935024990508 +2502,0.0140422183687036,0.0196004892725031 +2503,-0.00707076252480819,-0.0106667047619047 +2504,-0.001275858698242,0.020522351512028 +2505,0.0160007634295993,0.013254823269514 +2506,-0.0261149315239478,0.00304413991460648 +2507,-0.00156001251635419,0.0234113340765515 +2508,-0.0141327611664821,-0.00560538116591923 +2509,0.0246122833826446,-0.000747943156320237 +2510,-0.0105517215884457,-0.0257000383582661 +2511,-0.0195013646670801,-0.0207517219752654 +2512,-0.00658768046716846,-0.00948624543423897 +2513,-0.0160700659389723,-0.01199996 +2514,0.0199198157834891,-0.00847111704432766 +2515,-0.0259407803320505,-0.0130773197007486 +2516,-0.00940670837080389,-0.00699588506155913 +2517,0.0333670255937726,0.022919259231232 +2518,-0.00782426323451595,-0.00120776972624793 +2519,0.0235478580054161,0.0289288506645816 +2520,0.0147707345250746,-0.0118670485812085 +2521,0.00454197071176318,-0.00237914363121098 +2522,0.00842219262665131,0.0186771198958319 +2523,-0.00526927503202416,-0.00155888542478567 +2524,-0.00478034385473622,-0.00234374999999995 +2525,0.00401882714395253,-0.00787401574803161 +2526,0.00751997592805309,0.0116731902072689 +2527,-0.00454271138029881,-0.00744809878479023 +2528,-0.00779300696732343,0.00970496894409938 +2529,-0.0226728259692608,-0.00664322000781562 +2530,-0.00329872279646817,-0.0011737480897397 +2531,0.00545901543238984,0.0169231153846153 +2532,0.00311350825634992,-0.018409674171184 +2533,0.0347013314143367,0.0192086047173029 +2534,0.00126121829661724,-0.010481405279503 +2535,0.00526910042317031,0.00193719496075919 +2536,0.0118513350174662,0.00845186291003206 +2537,0.00787148307810727,0.000384024562825538 +2538,-0.00966123087621687,-0.0085205654531371 +2539,0.0061216650496273,0.00768639508070712 +2540,-0.000296316048651103,-0.00231128668379378 +2541,0.0151496728955824,0.030257788569294 +2542,0.00534542359353112,0.022992700729927 +2543,0.0109800350045214,0.0101156069364162 +2544,0.010345648698735,0.0152970823444653 +2545,-0.00158868944208692,-0.0133381759192503 +2546,0.00356769451975608,0.00359195402298856 +2547,-0.00163293576657124,-0.00432904056021064 +2548,-0.00275280625436793,0.0100000357142857 +2549,-0.00376356917991126,0.00884955752212389 +2550,0.0115140027441912,0.000353857041755186 +2551,0.0102771012030225,-0.00106269925611056 +2552,-0.00317944826842915,-0.00391177084239798 +2553,0.0166350601293961,0.000672754793138264 +2554,-0.0166504128111873,-0.0132924335378323 +2555,-0.00456560971067207,-0.0020338644067797 +2556,0.00592474054865426,-0.00923708518645226 +2557,0.0126487053824363,0.0128335355341596 +2558,0.00760161263763803,-0.00270910928855037 +2559,-0.00063569128849745,0.0120440954180026 +2560,-0.00235099533672223,0.00200340560923523 +2561,0.00991993567211925,0.00958991402116396 +2562,0.00924624055683774,-0.00132447015481881 +2563,0.0103663094844706,0.00494230642504122 +2564,0.0164680765985122,0.0101108936725375 +2565,0.0334367272935898,0.0035749106272343 +2566,0.000506649510599201,-0.00885245901639343 +2567,0.0182650688747187,0.00261608894702414 +2568,0.0134651829275238,-0.0109090909090909 +2569,-0.0236904304958707,-0.0066556075426159 +2570,-0.000179224086289641,-0.00128003200000001 +2571,0.0247256686039836,0.00604328861185465 +2572,-0.00352803877692228,-0.00543655260633192 +2573,0.00648731217923199,0.00318779078139012 +2574,0.0115235164755534,0.00349425031766207 +2575,0.00637180250553021,-0.0041467304625199 +2576,0.0180235517749231,0.0163163157729426 +2577,0.0129599876280516,-0.00409580970384373 +2578,0.0037283065976227,0.0170331676360121 +2579,0.00130237901644544,-0.00654610308316054 +2580,-0.0225447884571902,-0.0088051260630543 +2581,-0.00546908509063455,-0.00760456297859827 +2582,0.000810311084561478,0.00879400125628136 +2583,0.0208490203932241,0.00531077821373195 +2584,0.00583313619605771,-0.000625132854017025 +2585,0.0123731091439532,0.00156058047563726 +2586,0.0283401178870972,0.0192836559096209 +2587,0.036432732729752,0.00305163259078436 +2588,-0.00686525040552816,0.00243525128981732 +2589,1.70585929195929e-05,-0.00766871212691485 +2590,0.0258359972092697,-0.0124222666949606 +2591,0.00802030023157435,-0.00656458268208821 +2592,-0.00574274208028112,-0.00250705108116573 +2593,-0.0052724011233684,0.0028125 +2594,-0.00551968278286119,0.000312339913298434 +2595,0.0180071309172104,0.0177969315741025 +2596,0.0122055034433829,-0.00215252152521526 +2597,0.00508401597933983,-0.010251662325308 +2598,-0.0127242614727874,-0.00217932758964284 +2599,-0.01719619341048,0.00433970888652885 +2600,0.0308423523172094,0.000929173089836497 +2601,0.0169865350772232,-0.0109580459937994 +2602,-0.00802485640839194,-0.0233900039535406 +2603,0.0147866278564772,0.00983505710659898 +2604,0.00400800972613062,-0.0135048231511253 +2605,-0.0123957383585767,-0.0206761083254384 +2606,-0.00357712060252861,-0.00395383855024712 +2607,-0.00550771891734402,0.0203357004519044 +2608,-0.0289807156315002,-0.00551772169807598 +2609,-0.0432660992845469,0.00868729086229077 +2610,0.0484992089207626,0.0114504131218062 +2611,-0.00223554915536282,-0.00963397590346741 +2612,-0.0355781467010997,-0.00419216381812312 +2613,-0.00223898383063602,-0.00933994425093225 +2614,-0.0203826084409968,-0.00626563283208015 +2615,-0.00378480338805993,-0.00280286506375392 +2616,-0.00779431980781691,-0.00406507191994986 +2617,-0.0325696587094197,0.00124921923797635 +2618,-0.00317795160569036,-0.000312464874255852 +2619,0.00657014252749687,-0.00660374234602974 +2620,-0.007149957105118,-0.00125941435768256 +2621,-0.0293144520123839,-0.0251775338928341 +2622,0.00742783238242668,-0.0107667210440457 +2623,-0.00228801613373238,-0.0049180327868852 +2624,0.00175696081702258,0.00845253576072827 +2625,0.00234864170951176,-0.000650618087182925 +2626,-0.00672295702053636,0.0134788189987164 +2627,-0.0152090936249965,-0.015645371577575 +2628,-0.00912919375517535,-0.0155577959469644 +2629,-0.0129834181091592,-0.0103678595317726 +2630,-0.0301063772333363,-0.00605656144201072 +2631,0.000490176863572768,-0.015374069012641 +2632,-0.00773821898802317,0.000336021505376397 +2633,0.0238186248100936,-0.0223290614108877 +2634,-0.00926901908694847,-0.00137602339181287 +2635,-0.00538872658246361,-0.00034415004625427 +2636,0.0174392935253282,0.0169147502339225 +2637,0.0119136454508018,-0.00749826175869125 +2638,-0.00249247390675658,-0.00513871171158922 +2639,-0.029840172796526,-0.0260105439012111 +2640,0.00584804998964561,0.00350255704036975 +2641,-0.00259395366334242,-0.0014029814100315 +2642,0.0151016670768965,0.0286201022146508 +2643,0.000454733084535244,-0.00410537119397882 +2644,0.0148193810695664,0.0141652613827993 +2645,-0.0160197635878191,-0.0259515570934256 +2646,0.00866082342748978,0.0133151583026577 +2647,-0.00699103213099787,-0.00549268813912416 +2648,-0.00110234110953127,0.0071574982958418 +2649,0.00452859638981748,0.022651565622918 +2650,0.0198879928258662,-0.00603217158176943 +2651,0.00277497476694405,0.0280130609767733 +2652,-0.00285118495745895,0.00743611380536694 +2653,-0.0139698879423177,-0.0262110493102538 +2654,0.00761039854387506,0.0182411068976838 +2655,-0.0198503471498043,-0.0277870764048519 +2656,0.00220269381838834,0.00499663557628251 +2657,0.00429931606159738,0.00497182631753404 +2658,-0.00957737318460977,-0.00869274490137083 +2659,0.0255993827726217,0.0222294867603792 +2660,0.0143792277539298,-0.000981708147307158 +2661,0.0114946050973236,0.00650198309492849 +2662,0.0172640195532677,-0.00195436475718686 +2663,-0.00670102021410087,-0.0168930103712153 +2664,0.0130479550578762,-0.00633336666666663 +2665,-0.00933882671206627,-0.00874243443174181 +2666,-0.0062538373445932,-0.0150170994886382 +2667,-0.00923360648878139,-0.0234020266644088 +2668,0.010033545431894,0.0258591366403244 +2669,0.00319654470293581,0.00169843744230848 +2670,4.93623770641162e-05,0.00741736345246127 +2671,-0.00112156332235639,0.0259442027604531 +2672,0.0131201911321743,0.00717310074991853 +2673,-0.0165811494050492,-0.0182602583578933 +2674,-0.000778401201769958,-0.0286885236103646 +2675,-0.00484261817110482,-0.00445972555746141 +2676,-0.0451327295398716,-0.0110995490808186 +2677,-0.000156540490234007,0.0113168724279836 +2678,0.017567792075353,0.0201612903225807 +2679,0.016587445565099,-0.00404861687073613 +2680,0.0257547535583573,-0.00576857841087806 +2681,-0.00650945449913973,-0.00204008840530436 +2682,0.0016123990538857,-0.0075367931642072 +2683,0.0128472222143269,0.0188234957983194 +2684,0.0110031048831171,0.00667782949322774 +2685,-0.00264126516741317,0.0102445142101785 +2686,-0.00169394215316459,0.00230794592812386 +2687,0.00140154497545461,0.00557377049180333 +2688,0.00156024450346019,-0.00262984878369488 +2689,0.0131746111111111,-0.000987199769239945 +2690,0.00267540080702624,-0.00862927343608601 +2691,-0.00136335943553838,0.0023179469431143 +2692,0.00865894945483958,0.0188434041961207 +2693,0.0181604804459729,0.00388346278317152 +2694,0.0256183049905869,-0.00520494469746259 +2695,-0.0138554891440301,0.00194801954376691 +2696,0.0191517143140129,-0.00851335924972627 +2697,-0.00941699274984553,-0.00925317250495699 +2698,0.000889560046791371,0.00981672152541627 +2699,0.0184406722474181,0.00423597249149642 +2700,-0.00130403524265488,-0.00195892921837827 +2701,-0.00197487789184994,0.00065256117455129 +2702,-0.0144606672158805,-0.0108839050131926 +2703,0.00205942516367188,0.0162232316677482 +2704,0.0144154554590117,-0.0141494246182766 +2705,-0.00707215850515104,0 +2706,0.00893131136599407,0.0306220414673047 +2707,0.00612834363199089,-0.0129240383546353 +2708,-0.0267073131561358,-0.0074870445145522 +2709,-0.00325459351739132,0.00227353029316234 +2710,0.0137356406936946,-0.000324886279243512 +2711,0.0193124173292973,0.00517129912180676 +2712,0.0120067191411476,0.00865100956908076 +2713,0.01214668709642,0 +2714,0.00303454998759483,-0.00096212315586915 +2715,0.000270638077647958,-0.00418682783210396 +2716,-0.0048662172954503,0.0127186641424908 +2717,0.00198545474993736,-0.00833600486258406 +2718,-0.0134628118307952,-0.0133203374489819 +2719,-0.025610964190283,-0.012833235038935 +2720,-0.0125680722346818,-0.00729197878687431 +2721,0.0236893470453413,-0.000331564986737452 +2722,-0.0213161168525881,-0.0134408602150537 +2723,-0.0116926721923698,-0.00915564598168881 +2724,0.00290332074753104,0.00573162508428866 +2725,0.0151016313612939,0.00669795690897667 +2726,-0.0069735874185012,0.00566100547249393 +2727,-0.0217747638343349,-0.00603018425460627 +2728,-0.0225958265995935,-0.00235053719440784 +2729,-0.00364866392422117,-0.0170765021490266 +2730,0.00789500089511003,-0.0103520013802622 +2731,-0.0203948644271816,-0.00103623485194353 +2732,0.00255676579659369,0.00856164354240947 +2733,0.00795575650639615,0.010504879701796 +2734,0.0231305303262544,-0.000678195998643714 +2735,-0.00803584491702604,0.00337952010814469 +2736,-0.0189207018978161,-0.00305084745762711 +2737,-0.0373868329641817,-0.0300279689255576 +2738,0.0381527326408932,-0.0228571071428571 +2739,-0.0336996319773006,0.00178249560721908 +2740,0.00562551129972967,-0.00537630824372764 +2741,-0.0119598207754662,-0.000717396008514816 +2742,-0.00917217894461852,0.0116979798545898 +2743,-0.0145803700985993,0.0115627886628315 +2744,0.00204513022711646,0.033197798102981 +2745,-0.0342232880042891,-0.000677966101694901 +2746,0.0133761879282677,0.00438741155543075 +2747,-0.00303684838115832,0.00770267891149766 +2748,-0.044533986736907,-0.0268225928473178 +2749,-0.0376569552353792,-0.0093717809570211 +2750,0.0170182686872976,0.000693756503641937 +2751,-0.00779249865842898,-0.0216159114676084 +2752,-0.0112129338218904,-0.00931445603576751 +2753,-0.0214223549602821,-0.00675168792198048 +2754,0.00390391141710221,-0.00527903469079942 +2755,-0.00859323631323732,-0.000748820694452314 +2756,0.00140650521936155,0.00890545421501099 +2757,0.0171478681663039,0.0270758112969021 +2758,0.030583692493016,-0.0113180727023758 +2759,-0.0081227434986504,-0.0114475258493354 +2760,-0.00315640023442205,0.0102339543043146 +2761,0.0108931149161279,-0.0152133575059979 +2762,-0.0069710088789657,-0.0123966937491851 +2763,0.00155245733079889,-0.0071888384411653 +2764,-0.017956152586368,-0.00227527484735405 +2765,0.0154410613568245,0.00224466891133553 +2766,-0.0262352639995598,-0.0102041198111912 +2767,-0.00647397636060434,0.0178174455153138 +2768,0.0213709906660506,0.013909187408492 +2769,-0.00443416883116883,-0.00293685756240829 +2770,-0.017576345118973,-0.00479524143138165 +2771,-0.0390356803928361,-0.0111899295483002 +2772,0.0174237985817535,0.0107011439114391 +2773,0.0282263354938235,0.0166908206346452 +2774,-0.0144212159895801,-0.00915415632201231 +2775,-0.00877842336923603,0.013367088150289 +2776,-0.0046213504617508,-0.00837883393884027 +2777,0.00161480289637454,-0.0144124912938836 +2778,-0.0139765986857492,-0.00744594164385924 +2779,0.00399957858114753,0.00370912476665891 +2780,-0.0107341807776468,-0.0154425617869138 +2781,0.0424300609000145,0.00599026604231622 +2782,0.0307086874589571,0.0329472109722226 +2783,-0.0127835936215989,-0.0135780183486238 +2784,-0.0286527538100091,-0.0190725504861631 +2785,-0.0059171445045184,-0.00187332327188746 +2786,0.00268417494101398,-0.00527314520802803 +2787,-0.0158770449668708,0.00561805222404301 +2788,0.0122442307594593,-0.00907037071316596 +2789,-0.00616943080100746,0.0137905702571747 +2790,-0.0369706155147562,0.00223127565010327 +2791,-0.032577384160642,0.01176038264463 +2792,0.0398545094301935,-0.00628690805151966 +2793,-0.00678355780455686,0.00770638532110091 +2794,-0.00536001180703956,0 +2795,0.00944982652267609,-0.00368324125230208 +2796,0.017976290344546,0.0166606658217796 +2797,-0.0241429026098026,0.0089670017563487 +2798,0.0221194738760012,0.00107491938373338 +2799,0.0184170409765875,0.00357015351660126 +2800,-0.00315210688996702,-0.00574506283662478 +2801,-0.002941893345628,-0.0145719120374532 +2802,-0.00412241090114898,0.0171857858933047 +2803,-0.0255470878499993,-0.017857105763225 +2804,0.0338983216696228,0.00218178181818186 +2805,-0.00107138949850941,-0.00585223116313095 +2806,0.0232155797373639,-0.00219937675222231 +2807,0.0142321591888832,0.0098002907368527 +2808,0.0103140494498422,0.0111271352789973 +2809,-0.0257106754129316,0.000717288404493884 +2810,-0.00190574292587185,0.00535148036562671 +2811,-0.000900117853358703,0.00035663336816577 +2812,-0.0139734090060255,-0.00107108175651548 +2813,-0.000369547148001083,0.00142598935565018 +2814,-0.0248190195511706,-0.00645848559531811 +2815,-0.00625475712341722,-0.0138232448162968 +2816,0.0105365676053021,0.00972622478386178 +2817,-0.0180894517505936,-0.0142491408750772 +2818,0.0137426194374483,0 +2819,-0.00989726058564812,0.0158215755419482 +2820,-0.00718164463649039,-0.000359712243155173 +2821,-0.0253908418596183,0.00536679766129528 +2822,-0.0248066309308088,0.00710476021314381 +2823,0.0257225084263757,0.00705467372134049 +2824,-0.0128741061848009,-0.00925596297614815 +2825,0.0114264619019012,0.00177679466157762 +2826,0.0026405980605921,-0.00499996428571427 +2827,0.0140452419950257,-0.00466447776589608 +2828,-0.0220339311209991,0.00143314224292374 +2829,-0.000186770168073209,0.000358166189111804 +2830,0.00959537361007717,0.00781801733539499 +2831,0.0251544331783775,-0.00356626235498349 +2832,0.0264636304221293,0.00213519572953741 +2833,-0.00270641834379917,0.00283889283179554 +2834,-0.00533088851522593,0.00494350282485878 +2835,0.00143574760435972,-0.00747061517358181 +2836,0.0198740378883499,0.00495571681415928 +2837,0.00360240725823191,-0.00319602272727272 +2838,-0.00529124334837595,0 +2839,-0.02004075230183,0.0074022203947049 +2840,-0.0212803886272915,0.00838867499515299 +2841,-0.0320580117219275,0 +2842,0.00204749064925302,0.00659715300684556 +2843,0.00509269899937876,-0.00840336163877311 +2844,-0.00998316674428442,0.00139863636363637 +2845,-0.0106805247260945,0.00348435527929072 +2846,0.00706224640992346,-0.00384753410283317 +2847,0.0199912669098787,0.0221268156497088 +2848,-0.0105397390703668,-0.00521014222958862 +2849,-0.0236989466221546,-0.00348553490813756 +2850,0.0149915513562418,0.00966510216310337 +2851,-0.0274200213147821,-0.00138933652694205 +2852,-0.00389209528782766,0.0329190124286194 +2853,0.018368463752209,-0.00751633986928094 +2854,0.00715023997257465,0.0056355978197996 +2855,0.0211409067496948,-0.00471846477765127 +2856,0.0300381411474548,0.0251456600691302 +2857,0.0285920713291135,0.0148035356376759 +2858,-0.00794461521065637,-0.0116135998895598 +2859,0.0139836596066783,0.0132689686369117 +2860,0.00991160007504335,0.00985374679882075 +2861,0.0232900618016562,0.00770364444444453 +2862,-0.00446949368417363,-0.013209216054962 +2863,0.0111676140249675,-0.00969987816308719 +2864,-0.0154782964049096,-0.0101041641151255 +2865,-0.00838902810058775,0.000917681276160445 +2866,0.00389239328440912,0.0102936727306591 +2867,-0.024512253256354,0.0149120195321211 +2868,-0.0350006037775418,0.00945344221290657 +2869,0.0131851691946081,0.00674894326590711 +2870,-0.00304667860540991,0.0226554924764982 +2871,0.0218318828953572,0.00598640216725188 +2872,-0.00743758363806745,-0.00659982821232876 +2873,0.00382915152782158,-0.00693432513914121 +2874,0.00178677794767901,-0.0134699552872646 +2875,0.00676176571214594,0.00350154654216523 +2876,-0.00840428119505332,0.0214163335237007 +2877,0.0078884864354251,-0.00401373268309262 +2878,0.0146818015765859,0.00428198699063613 +2879,-0.00411352118094845,-0.00372484219341867 +2880,0.00219644563329577,0.0193874121944367 +2881,-0.00313819866194067,-0.017147698362521 +2882,-0.00943583831089878,-0.00603803927653938 +2883,-0.0151667360557415,0.00514874156603971 +2884,0.0075824697541651,0.0199046548867201 +2885,-0.00665318204226994,-0.00563848306629583 +2886,-0.00294787018762396,-0.0180826923076923 +2887,-0.0125176567020769,0.00457142857142847 +2888,0.00864757560448897,-0.00806448709491675 +2889,-0.0137425600076437,-0.00930229597079683 +2890,0.00451389805410856,0.0171428 +2891,-0.000532737350580418,-0.00057175528873651 +2892,-0.0207328586461668,-0.0112749349522982 +2893,-0.014777801644382,-0.0328455638790349 +2894,-0.00807739037297723,-0.0066126239855724 +2895,-0.0272271378110356,0.013345224989762 +2896,0.000223510424546356,-0.00148509067330517 +2897,-0.0114552618100624,0.0197962165820213 +2898,-0.0108944236140309,0.00779898924895985 +2899,0.00693521283261869,-0.00231609721146225 +2900,0.0310101784298697,-0.00523864944008586 +2901,0.0221510883311377,-0.0123748383139315 +2902,0.00548952715648204,0.00205818888904383 +2903,-0.00809735765509427,0.00584627319047862 +2904,-0.00571013122693457,0.00349557218202309 +2905,0.0172841914917652,0.000582125215844234 +2906,-0.00385040760653906,0.0100865414960651 +2907,0.0153525569552534,0.0277388071655592 +2908,-0.00182878713277538,-0.00056072332832765 +2909,0.00217577431151731,0.0138236114914908 +2910,0.00641557656553561,0.0027571546732838 +2911,0.000255657545644042,-0.0148292660979707 +2912,0.00335833333333329,-0.0084650961756516 +2913,0.00319017150139739,0.0190564835399241 +2914,-0.0174705963322165,-0.00597102451288507 +2915,0.0488524868901954,0.00438044444244193 +2916,-0.00458381072881143,-0.0181586498298391 +2917,0.00564641361003528,0.0072739403139171 +2918,0.0151856805504818,-0.00253646155559723 +2919,0.0121989032674829,0.00973309262166409 +2920,-0.00174580032858677,-0.000314070351758843 +2921,0.00908732400635566,-0.00536785601515624 +2922,0.012669177075927,0.00689868318904613 +2923,0.01471936963169,-0.00599362757117892 +2924,-0.00902737435519318,-0.00379990500316663 +2925,-0.000580708858932338,0.014971958360201 +2926,-0.00861146796163545,0.0252355738898017 +2927,-0.0144351267705539,-0.00581033621375127 +2928,0.0276233384867266,0.00517182857230996 +2929,0.0453662562836575,-0.0198572448029787 +2930,0.0179138070988479,0.00370936653535504 +2931,-0.00118501340580678,-0.0176155074672693 +2932,0.00879904440030039,0.000314402525610127 +2933,0.0106550576647296,-0.0130614849653229 +2934,-0.0133115112859789,0.0072739403139171 +2935,0.00256791136079634,-0.000316355573667904 +2936,0.00119285038536133,0.0240814456338823 +2937,0.00387697864604103,-0.0175694865259451 +2938,-0.029431692217071,-0.0267589913865899 +2939,0.00470567124489095,-0.00726826165960024 +2940,0.00162704083556738,0.0157972881012603 +2941,-0.00919502458943534,-0.00449092787479471 +2942,0.0202731747447189,-0.0217948069937562 +2943,-0.00690543178520308,0.000960582772974707 +2944,0.00592114123912663,-0.00256821829855544 +2945,0.0157061544933247,0.0161086544535692 +2946,-0.0233098556997206,0.0225377901370112 +2947,0.0105355113117843,-0.0015296115487797 +2948,-0.0167563501851501,0.0102936727306591 +2949,-0.0328356799579787,-0.00701219533573757 +2950,0.0114205678267968,0.00394779836015791 +2951,0.0201428959265357,0.0117046818727491 +2952,0.0161337922179445,0.00951245569299817 +2953,-0.0104618855763221,-0.0259224755741851 +2954,0.0473463439489486,-0.00152715323597108 +2955,-0.00314866896453476,-0.00893685642721541 +2956,-0.0157207149917036,0.00184549380778192 +2957,0.00964581067730785,0.00793414708574916 +2958,-0.00718795222228568,0.0150285542530809 +2959,-0.0125852737319464,0.000300450730181615 +2960,0.02297324352018,0.00893397802656485 +2961,0.00326820623107818,0.0100234675721384 +2962,-0.0127220993321741,-0.00177191371022118 +2963,-0.000786661257920639,0.000590318754713234 +2964,0.009677092415812,-0.0174174780005249 +2965,-0.0141598563764227,-0.00878524742715818 +2966,0.0116114492547969,0.00181439371031138 +2967,0.00622906229534077,0.0204383305946879 +2968,0.00643251156780502,0.0108409900134488 +2969,0.00651153564884647,0.00928882411353196 +2970,0.00529399228787178,0.00115978537780301 +2971,0.00484926462283874,0.00433016756149462 +2972,0.00671948686016015,0.00801829942831029 +2973,0.00862663460918146,0.00114419339657314 +2974,0.0239182723985657,0.000857473514862719 +2975,-0.00286613960631274,-0.0118565638023964 +2976,0.00969597870429753,-0.0242892194484134 +2977,0.0130661312918932,-0.00118615061725531 +2978,0.00739787487887249,-0.0044981726173741 +2979,-0.025547695646929,-0.00140765765765758 +2980,0.0156601287727886,0.000562774322938075 +2981,-0.00420901301937128,-0.00367130754024287 +2982,-0.00513425756987129,0.00337739947586264 +2983,0.0127574617940199,0.0114079023764025 +2984,-0.00247407938409061,0.0191048040148692 +2985,-0.0164490910476657,-0.0181333333333333 +2986,0.015502506766727,0.00741130247250659 +2987,-0.00290914354931499,-0.00505450917797268 +2988,0.00184605303152057,-0.00615628998511019 +2989,0.00119093977944442,0.0209643343815514 +2990,0.0142570390745804,-0.00368227248816395 +2991,-0.00603822155389552,-0.0047568710359408 +2992,-0.0122631535841896,-0.017204273731068 +2993,0.00177080936788233,-0.0125203858181609 +2994,-0.00883497894957209,0.00916936304372377 +2995,0.0117818784162006,0.00855614927507224 +2996,-0.0025779204184551,0.00452483364386478 +2997,0.00752284148623348,0.00185969718011955 +2998,0.0181101975633936,-0.00776441808644819 +2999,0.023005390420524,0.0066489365238796 +3000,0.0181811182699064,0.0138998947311856 +3001,-0.00878026730289042,0.00832249653257487 +3002,0.0266456356824491,-0.00365439823402773 +3003,-0.00233624067075019,0.0161786855721286 +3004,0.00510651173678377,-0.0247368157894737 +3005,-0.0140709731939184,0.00938480163230436 +3006,0.0113165369665265,0.00904153988740755 +3007,-0.00155604108254419,-0.015743846346265 +3008,-0.00746401086970261,-0.0132943362591243 +3009,-0.00146286441470233,-0.010478237225195 +3010,-0.011020312853023,-0.0144454078616901 +3011,0.00550677110289611,0.00542152359505358 +3012,-0.00452263642760186,-0.0101314074479737 +3013,-0.00766202422841156,0.00164029515361965 +3014,-0.011589457593076,-0.00910350344827587 +3015,0.00830570123376686,0.0149456254061311 +3016,0.0369591010000574,-0.00491534693925032 +3017,-0.00426308612054718,0.012405689730006 +3018,-0.00668552748096433,0.00961530474399852 +3019,-0.0068025068371512,-0.00402247240486809 +3020,-0.0100447453669749,0 +3021,0.0115860718391004,0.00320767174552259 +3022,-0.0142642925580658,-0.00672766415500538 +3023,-0.0224591843521319,-0.00677323218639935 +3024,0.00542344608151274,-0.0215886791699783 +3025,-0.00720311425065213,0.00769016753639101 +3026,0.00629300567024975,-0.0181767907257711 +3027,-0.0129352568885979,-0.0064733747951979 +3028,-0.00671745981458935,0.0141509984974751 +3029,0.00520789370735647,-0.0303030588907947 +3030,0.0195098713909707,0.0223588323744783 +3031,0.0196820244679492,0.0266593866517622 +3032,-0.00561113919530808,0.00352401744440275 +3033,-0.0251170234622803,-0.0140186362281849 +3034,0.015298558229671,-0.0058059997680951 +3035,0.00442422456253635,-0.00667959922070693 +3036,0.00839658930918584,0.00360513023834913 +3037,-0.0185140746439155,0.0203748975719941 +3038,0.00804724039792041,-0.0216486822550287 +3039,-0.0114827540755762,0.0106382978723402 +3040,-0.00194086202975545,0.00542596295643075 +3041,0.00163800847500629,0.0258984936575055 +3042,0.0142692049208763,-0.00357639634533123 +3043,0.00741328946034799,-0.0147961474036851 +3044,-0.00015608671111225,0.00995024875621889 +3045,0.0137969292509948,0.0103939001533397 +3046,0.0175996030170702,0.00652168495982839 +3047,0.0130046723786753,0.00995423782374161 +3048,-7.46342757220522e-05,0.00800648497447341 +3049,0.0156310110749101,0.00372241415255462 +3050,-0.000808759322459563,0.000265762899143167 +3051,0.00366305419459388,-0.00534476244493654 +3052,-0.0160411075868746,0.00239936029855303 +3053,-0.0117104472091338,0.0063576688741721 +3054,-0.011232757926882,0.0060558188520273 +3055,0.00435982358116354,-0.00769437536997538 +3056,-0.010516036188897,-0.00399568449665208 +3057,-0.00910411325194898,-0.00186816114576547 +3058,0.0195577207925686,0.0103011090781533 +3059,-0.00271748835773076,0.0117462800379463 +3060,0.00288016517750223,-0.0140286398631192 +3061,0.00655066094027526,0.0164020046862796 +3062,0.00210389206356804,-0.00787192317313242 +3063,-0.00303349609911048,0.00104851894896372 +3064,-0.000584358252082445,-0.00659630572051157 +3065,0.000904019477119674,-0.00211533580116341 +3066,0.00964389794762334,0.00526038926880597 +3067,0.00096906322370821,0.00653253200940685 +3068,-0.0112314612459217,-0.0100290580635803 +3069,-0.0113591478039612,-0.00503973461433072 +3070,0.00389192762499296,0.00919837080679028 +3071,-0.00026348491817295,-0.00713009931245217 +3072,-0.00484207486406613,0.0262832121853105 +3073,0.00782550556174051,-0.00423311752988057 +3074,0.0117213483636191,0.00839506172839515 +3075,0.0106423532464469,-0.00396628656420418 +3076,-0.00965208437914121,-0.013822543005214 +3077,-0.00431659291894498,-0.0109247964704066 +3078,-0.00111763219691362,0.0233250129857324 +3079,-0.000223586850312736,0.0168334463608955 +3080,0.00906493866370312,0.0103813621623063 +3081,0.00165881489552054,-0.0016928658618073 +3082,-0.00697856298585741,-0.00829066121875929 +3083,-0.0131059074471891,-0.02859290264843 +3084,-0.0159513408577063,-0.00175879401404006 +3085,-5.72367399155756e-05,0.000502285283777012 +3086,0.0129732969120037,0.0160613042732567 +3087,-0.0130663898117831,-0.0282012187957009 +3088,-0.00744789138699082,-0.00382560581039529 +3089,0.00396786553301054,-0.000765671260847465 +3090,-0.00718197348373628,0.0143396226415094 +3091,0.00202309585902422,0.0160891576193486 +3092,0.0112965571853595,-0.00974766357149024 +3093,0.0117288245166486,-0.00175260394973978 +3094,0.00099679890553011,0.00125038753436413 +3095,-0.0132444266427825,-0.0075586547633825 +3096,0.00729092241789557,0.00125279378601853 +3097,0.0372839859567344,0.0234890879248615 +3098,-0.00297139275625653,-0.0088867197673028 +3099,-0.00379601936066075,-0.00272267313254099 +3100,0.00235011485062327,-0.01000005 +3101,0.00185627924888729,-0.00781055701210775 +3102,0.0139442764054295,-0.00659393862541214 +3103,-0.0110192438106689,-0.00947258040264771 +3104,-0.00351164061296809,0.00913234445115903 +3105,-0.00738101824658382,0.00554997491296615 +3106,-0.00418414778733528,-0.00252903382577068 +3107,0.0122969296895283,0.0107580682822602 +3108,0.00156631123300588,0.0111330287547267 +3109,0.000185163422721541,-0.0044730614078996 +3110,-0.00857646827801167,-0.0161617179879655 +3111,0.0145437293739233,0.00577464193951085 +3112,0.011710419878068,-0.00201262893081762 +3113,0.000198443874971912,-0.00176411290322581 +3114,0.00263888602662915,0.0166046600547539 +3115,0.00158078951017331,-0.00623441427603064 +3116,0.0111703190060252,0.000498529424190679 +3117,0.0183815028862929,0.0017417268410482 +3118,-0.00259612822973152,-0.00449890049982 +3119,0.0178947734882239,0.00818051561725336 +3120,-0.00375982927697167,0.0146555694835263 +3121,-0.00691960541580082,-0.00367732278310078 +3122,0.0139441904527943,-0.0124100269940425 +3123,0.0112899833561923,0.000744022817460408 +3124,0.00390822440169886,0.0215966760882475 +3125,-0.00275719122106752,0.00650918514946947 +3126,0.0157492854562204,-0.00508844196753074 +3127,0.00583557559681702,-0.00389197266134842 +3128,-0.00415511395530459,-0.00611845310527525 +3129,-0.017011593704501,-0.00689992573189121 +3130,-0.0110648774218326,0.015765170991996 +3131,0.00997828665872942,0.00650602409638562 +3132,-0.00130316026709038,0.00431861804222648 +3133,0.00108481232371462,-0.000720240061453036 +3134,-0.00348355101803243,-0.00337277780644551 +3135,-0.0104498620415856,0.00407874280230318 +3136,-0.000880788266414521,0.0073827574478324 +3137,-0.00609219102893421,-0.00574855089820352 +3138,0.000885369622782466,0.00666188452681135 +3139,0.00594060492979971,-0.00743044085737182 +3140,0.0117416934635238,0.0125443550295857 +3141,0.010222716022813,-0.0131894241441385 +3142,0.00630877907320716,0.00406013862097297 +3143,-0.000427834817249708,0.000716062018326411 +3144,0.00584915458735682,-0.00239241632517745 +3145,0.0202146710407974,0.00452495810788476 +3146,-0.00650239132674126,-0.00502640031178556 +3147,0.000419341654464256,-0.00263981294167561 +3148,-0.00368263885014058,0.000479755348518972 +3149,0.00189035914838935,0.00950346875742464 +3150,0.0127526805418148,0.00118649741780961 +3151,-0.0118547733948804,0.00730275601171357 +3152,-0.0181545071717481,0.0101054796789912 +3153,0.0141904479508632,0.00358021936854381 +3154,-0.0052160739787934,0.00334524977698491 +3155,0.00823478665292655,-0.00022302028895745 +3156,0.0254141470230653,0.000891397390046735 +3157,-0.00164900547922301,-0.0105855175411929 +3158,0.00655266727864582,0.00224714606741572 +3159,0.0136335996859301,-0.0120536499419228 +3160,-0.00650538747221146,-0.0018227842748413 +3161,-0.00234330102204178,-0.00711328558452115 +3162,-0.026673682566395,-0.00973127896200194 +3163,0.00551335708457375,-0.00699950986935347 +3164,-0.0056491371754007,0.0117592347650274 +3165,-0.00494105325038733,-0.00673159207374223 +3166,-0.00168496210704468,-0.00795507683878918 +3167,-0.00508039780650727,0.011334674994217 +3168,0.002744300247927,-0.00069442128022165 +3169,0.0130221900827626,0 +3170,-0.000208367195911602,0.00735291819852948 +3171,0.0130604383599432,0.0127042190243094 +3172,0.00266668717948718,0.00429180031624131 +3173,0.00489898943971247,0.0116097563829033 +3174,0.0118999692658343,0.00709377062527665 +3175,0.0136277232032998,0.00485331988293324 +3176,0.000397742865665601,-0.0084538596561989 +3177,9.94432272928377e-05,0.00597080924434307 +3178,0.00730357283853139,-0.00155036537982884 +3179,0.00216664366587913,0.000442683216412784 +3180,-0.00644268021055289,-0.00355476576559716 +3181,0.0121413692002752,-0.00312010258792301 +3182,0.00117362347188261,0.000222860957601139 +3183,0.0024390243902439,0.0121065155183799 +3184,0.00774446250500113,-0.00754047460634279 +3185,-0.0440671205969856,-0.00289148138103829 +3186,-0.00835710329116082,0.00662834761945857 +3187,0.00858844085492128,0.0141581790459593 +3188,-0.00620170794833562,0.0120508067129159 +3189,-0.00377592619197724,0.00620181805824713 +3190,0.029802,0.00170798462852264 +3191,0.00423937691018443,0.00340425531914886 +3192,0.00226248269673483,-0.00642396131854472 +3193,-0.00029525731462924,-0.00994807482923559 +3194,-0.00763430490150408,0.0111205308434788 +3195,0.0070880191555814,-0.00515902837489252 +3196,0.0020630611841728,0.00342759211653806 +3197,-0.00822109754577164,0.0176767676767677 +3198,0.000989501305946957,-0.00977473417393262 +3199,0.0153936186223074,-0.0107388313844753 +3200,-0.00874691891891895,0.0110450505078568 +3201,-0.039644394411636,-0.0225890742269967 +3202,0.0285855781637717,0.00797239819004525 +3203,-0.00639295768261957,0.000645973312790202 +3204,0.00635234739454097,-0.00172558236139821 +3205,-0.0158298043960475,-0.0100217642692041 +3206,0.00720722708293834,-0.00305952810574855 +3207,-0.002810670463441,0.00715994792796703 +3208,0,0 +3209,-0.00881015696202529,-0.0122996049264136 +3210,0.0203373307439287,0.0267208214348188 +3211,0.00217772724740825,-0.0202835559556621 +3212,-0.00921756355510601,-0.0087055437019223 +3213,-0.0107341569620252,0.00182936199405434 +3214,-0.0124051567315444,-0.0118000691392856 +3215,-0.013297309094176,-0.0112306733163 +3216,0.0144363267008566,0.0203987847719738 +3217,0.0209503203498331,0.010208733656591 +3218,0.0264467548897555,0.0178252892641424 +3219,0.00504900485579195,-0.0112663359336112 +3220,0.0175522652379611,0.0142158818302977 +3221,0.0037065101339431,0.0240624534129101 +3222,-0.00104652268055824,-0.00479200609888921 +3223,0.0152707235388931,0.0124758437308736 +3224,0.00558969650045449,0.00278843849825057 +3225,-0.00336504944760567,-0.012377850431658 +3226,0.0094444166666667,0.0191693712636982 +3227,0.0127970930018813,0.0103287944841651 +3228,-0.00736651947267993,0.00273283582089552 +3229,0.00238841629259215,0.00605936050857994 +3230,-0.00147197796150814,0.0172484596047545 +3231,0.00284382161556151,-0.000410866885784729 +3232,-0.00165395568034637,0.00429533655748292 +3233,0.00793067478388357,-0.000409249036407861 +3234,0.0139326112359551,-0.00184501848800783 +3235,0.0139159723453288,0.0167305378607027 +3236,0.0119110176913646,-0.000605062500804186 +3237,-0.00166683045296664,-0.00242626369644684 +3238,0.012817207821796,-0.0147721988193601 +3239,-0.00697656766332192,-0.0107839276071353 +3240,0.0141002495761369,0.00985626263128818 +3241,0.00137377005775078,-0.0150062734472698 +3242,0.0182078399614223,-0.00819499894935897 +3243,-0.00875849504691321,-0.00252789124651588 +3244,0.0117647226890756,0.00586385340314129 +3245,-0.00058858151854026,0.00125498846988101 +3246,-0.0335447988181108,0.0166597699847752 +3247,-0.00383846298102922,-0.00330169218534232 +3248,0.0112136892952644,-0.00790343145160441 +3249,-0.00380987105047839,0.0155609746109747 +3250,-0.00426085217391304,-0.00867414327443805 +3251,-0.0231316543926752,-0.0150942764131179 +3252,0.0150718625550684,-0.0023114309728934 +3253,-0.0193837075314973,-0.0147121102468184 +3254,-0.00295640558260869,0.00572389254712283 +3255,-0.01722409503625,-0.00468577199817311 +3256,-0.0138593731721508,-0.00599963599741317 +3257,-0.0138641967213114,-0.0334366253321524 +3258,0.0243122557604513,0.0126804104643459 +3259,-0.00778317237236687,0.00293747377255547 +3260,0.0102709667031882,0.00666944560233431 +3261,-0.00355430066150438,0.00970074283383407 +3262,-0.00473171136984716,-0.00643959298794329 +3263,0.0173699099459586,-0.00543020038784049 +3264,-0.000702256142489462,-0.00906217051502274 +3265,-0.0123534219433013,-0.00914506592939169 +3266,-0.0193875707389266,-0.0122712376260229 +3267,-0.0096039054311918,0.00662953407311957 +3268,-0.028988254117647,-0.00928115651710964 +3269,9.41276097472694e-05,-0.0148959467734525 +3270,0.0138282877030162,0.0125459225611074 +3271,0.037000617007781,0.0285774322336627 +3272,0.00107135968089704,-0.00847639348328876 +3273,-0.025263176201373,-0.0126609662086252 +3274,0.00880058964978594,-0.00517681179515079 +3275,-0.00382511829257411,-0.00870326389693772 +3276,-0.027897425575735,-0.0105540677220758 +3277,-0.00783094646345774,0.0164360287008638 +3278,0.0251104026387932,0.00323339088668672 +3279,0.00757646715901968,-0.0102352138604188 +3280,0.0253558625381519,0.0256737316852593 +3281,0.00513366068860872,0.00105974989402288 +3282,0.00106096376765633,-0.00361629455929772 +3283,0.0301934729992688,0.0195191392296663 +3284,0.0123914105805802,0.0213177572993642 +3285,0.000168605138329434,0.00769228402366757 +3286,0.00761120788911349,0.00573618546845134 +3287,0.00316828408924,0.0143698700972939 +3288,-0.00849240729841083,-0.000943197359113505 +3289,0.00659873866857042,-0.00118033519404307 +3290,0.01884933663783,0.00563373265886075 +3291,0.0229019864566461,-0.00519105697991841 +3292,0.0124940851849919,0.0164771176607102 +3293,0.00487884002394017,0.0177797815769268 +3294,0.00586716723981589,-0.00665435949268657 +3295,0.00691422461999517,-0.0011487020709558 +3296,-0.00210201639786726,-0.000689632183907967 +3297,0.0081081312741313,0.00820795694920292 +3298,0.0263157894736842,0.00656853877379221 +3299,-0.00627980640508149,-0.00136089816284866 +3300,-0.0262443138730505,-0.0022731983508436 +3301,0.0124981216454242,0.00158871989131373 +3302,-0.0152575968643689,-0.00478912222527354 +3303,0.00488023099791577,0.000683751123889005 +3304,0.00208723715145919,-0.0138632627972104 +3305,-0.00637939975615217,-0.00510910345775414 +3306,-0.0168498452068715,0.00115982367989268 +3307,0.00150074251975896,-0.0177053820182865 +3308,0.00424729435462717,0.0114351697285961 +3309,-0.0211227769476705,-0.0195098505712551 +3310,-0.0185700592043531,-0.001191019533111 +3311,0.0177581281902321,-0.0234032179424669 +3312,-0.00695850010384333,0.00869987895843688 +3313,0.0108843620060271,0.0043310874800027 +3314,0.0164515426916598,0.00335731406816994 +3315,0.011131003260442,0.0188235058823529 +3316,-0.00760785098039213,-0.00496568917082795 +3317,-0.0127084827210725,0.0137593280373292 +3318,0.0102979090503726,-0.000466635546742127 +3319,-0.00410448331984389,0.00093242419895467 +3320,0.00692209444497896,-0.00606648886354013 +3321,-0.00803243813387424,-0.005857895878499 +3322,0.0246894272844165,-0.000244189459086658 +3323,-0.0155911195049425,-0.0073782341367439 +3324,-0.00144869215291756,0.00147350192845051 +3325,0.00853814235556969,-0.0106726232148767 +3326,0.015940306492977,0.0303248623423554 +3327,-0.0106340447482891,-0.000481579592621785 +3328,-0.00326436310930515,-0.00265574614465208 +3329,0.00758533513883268,0.00144652844744448 +3330,0.00424862319824746,0.00575266045655192 +3331,-0.00197083172204701,0.000957782612920614 +3332,-0.00435467131382408,-0.0026409602573369 +3333,0.00378605461260494,0.0144343594147828 +3334,-0.00483475477268373,-0.00237186907020888 +3335,-0.0113827494989981,-0.0129745558139008 +3336,0.0223354078735957,0.0300629457003029 +3337,-0.0054368763553108,-0.00633210615225374 +3338,0.0132949079962255,0.00814149764403346 +3339,0.00809750147447372,0.00807563451776665 +3340,0.0178665292664845,0.00333125137062769 +3341,-0.0160079352942391,0.0229861879576892 +3342,-0.014925365476721,-0.00203829999921926 +3343,-0.027886511739728,-0.00863490971700054 +3344,0.0294687482621655,0.000411035758322924 +3345,-0.00194250198778171,-0.00870642584135879 +3346,-0.0230524159844415,-0.0134454627498093 +3347,-0.0063195023387009,-0.0285220187666815 +3348,0.00199584860297224,0.00899361865110032 +3349,0.018492406711509,0.0219895078534031 +3350,-0.0102913473717543,-0.00802197610348271 +3351,-0.00357509326507282,-0.000422407620798645 +3352,0.00111101498117588,0.00587871077306928 +3353,0.0227994964590809,0.0223727417411178 +3354,-0.0013977867081529,-0.00869569376181568 +3355,0.01090712019499,-0.00604042932890763 +3356,-0.000922541658662237,-0.00903732622793926 +3357,-7.69567903576056e-05,0 +3358,0.010122543649612,-0.00337418824859505 +3359,0.00867658111314387,-0.01108733428199 +3360,-0.0225273731880642,-0.0066538312942691 +3361,0.018327765285477,0.0214240911274082 +3362,-0.00197293976303647,-0.00337197042419444 +3363,-0.0115136629683272,-0.0125906954205998 +3364,0.00199168081769398,0.00783398263815372 +3365,-0.00446280369929512,-0.00660703352971152 +3366,0.00122954200851298,-0.0014941302665584 +3367,-0.00587503087604319,-0.0105693914890123 +3368,-0.00551890426050093,-0.00476814054547322 +3369,-0.00665094663573669,-0.00896564618412434 +3370,-0.00298230266806312,-0.00175242051468029 +3371,0.0113284213482146,0.0205964166359918 +3372,-0.00225529986018506,-0.0036606805267157 +3373,-0.0111661399884587,-0.0102240154399822 +3374,-0.0019697447521233,-0.010773988566403 +3375,0.00532915368854467,0.00763696235492208 +3376,-0.00235659853048075,0.00304544261376029 +3377,0.00453545522056901,0.0160530818481789 +3378,-0.0101105767789981,-0.013449089520568 +3379,0.00791476367122666,0.00281207008436075 +3380,-0.00456586636673116,-0.00697015900675235 +3381,0.00843027079517396,-0.00591588531805168 +3382,-0.00478432156862754,0.000219123758198248 +3383,-0.00591715976331361,-0.00861696900649438 +3384,-0.0178270378047622,-0.020058576066229 +3385,0.00717532488240455,-0.00498294428163331 +3386,0.00924169050934734,0.00674913370643118 +3387,-0.00126539067913011,-0.00112610355287821 +3388,-0.00349207936507942,-0.000225343550920052 +3389,-0.00246636960034413,-0.0020316027546638 +3390,-0.0254548584482338,-0.0013561708247663 +3391,-0.020821187640543,0.00628926325247094 +3392,0.0260382789263327,0.00201750724013644 +3393,0.0189400360038187,0.0204216069296968 +3394,-0.000398081359779655,0.00175357303273951 +3395,0.00954107396309727,0.00305941884000963 +3396,0.0131506891740211,0.0192885126446634 +3397,0.00856349361840344,-0.000858022326426833 +3398,0.0185508584095102,0.00639384085225237 +3399,-0.01009565583174,0.00761423450960726 +3400,-0.00047936240078736,0.0123617433883812 +3401,-0.00530123694779117,-0.00370052250109968 +3402,-0.014091415185096,-0.0130099454469656 +3403,0.0049440753349994,-0.000220511689457343 +3404,-0.00317098143216494,0.0205228122591744 +3405,-0.00506656030726748,0.0125853239636237 +3406,-0.00882110448092893,-0.00385438963909229 +3407,-0.0241472555868413,0.00234992517945042 +3408,-0.0331472700030293,0.015355489790587 +3409,0.00658581444392001,0.000840710347174927 +3410,-0.00234521850982066,-0.0205920853837856 +3411,0.00337603886883758,0.00256745816998461 +3412,0.0350818907861519,0.0124656660694839 +3413,0.0151856996734762,0.00706037624902114 +3414,-0.000781554480563529,-0.000214038091161996 +3415,0.00698514148831612,0.0057446808510639 +3416,0.0102424458776905,0.00676246830092985 +3417,-0.0056652703862661,-0.00105775333192294 +3418,-0.012955377567944,-0.0141600297326749 +3419,-0.0209498442796299,-0.0208059789750329 +3420,-0.0256012308300651,-0.0333493282149712 +3421,0.00597643157849302,-0.0298986649394942 +3422,0.0286042867269622,0.0271071286055977 +3423,0.00326598108159604,0.000682859094013182 +3424,-0.00470023936324517,-0.00942095588235286 +3425,-0.0178489892765519,0.00321836781609203 +3426,-0.0100668621780963,-0.0208870917416783 +3427,0.027067946346148,0.0291637737335106 +3428,-0.0196095865708654,-0.0190387508706757 +3429,0.0214977169761037,0.00508202806463313 +3430,0.0143595045474083,0.00436980220791169 +3431,0.00953949370461351,-0.010223024855413 +3432,0.0083419419362053,0.0213733287858117 +3433,0.0011167854611533,0.00722345388766268 +3434,-0.0218574968724981,-0.0011299209039548 +3435,-0.0041428031064647,-0.0177092916283349 +3436,0.0152764691891022,0.0142824979759125 +3437,-0.015961172558004,-0.00478357609186433 +3438,0.00804756822953108,-0.0006839070135379 +3439,0.00591304347826093,0.000910976998405753 +3440,-0.00252812311505646,0.000682726460690262 +3441,-0.0201885179617836,-0.0150149684681228 +3442,-0.0309921516778316,0.00345299271300636 +3443,0.0112421121149019,0.0185268648227233 +3444,-0.00657055107555127,0.00784584156364385 +3445,0.00724764469779801,0.0210664691683126 +3446,0.00361077815138815,0.0227321676446029 +3447,0.00476146805788272,0.00256682352941176 +3448,-0.0047842481024033,0.00106835472368279 +3449,-0.0116894885844749,0.0136986719979205 +3450,0.0233678463244422,-0.00721715119471136 +3451,-0.00465954309425702,-0.00234044680851057 +3452,0.00169964217103822,-0.00234593735009457 +3453,-0.0143362854036502,-0.00449869323050564 +3454,0.0147505988311228,0.00701974077939768 +3455,-0.0073847261582787,0.0105241006324606 +3456,0.00617561963190847,0.00230997484901243 +3457,0.0179308609808613,0.00314006698764922 +3458,-8.78604063315991e-05,-0.0120762497441473 +3459,0.0150649177489177,0.0172808248444893 +3460,-0.0329632462956561,0.0254378064516129 +3461,-0.00637272789944842,-0.010430266538094 +3462,0.039574026316107,0.00537237865876244 +3463,0.0104538456023716,-0.0116191714464173 +3464,-0.00861923849372388,-0.0136778498039104 +3465,0.0138636738735766,0.0112697779387761 +3466,0.0113404585135024,0.0168051702011018 +3467,-0.00467213114754093,0.00459558806633867 +3468,-0.00893154166277768,-0.000367800655244574 +3469,0.00115645136554509,0.00983242934568205 +3470,-0.00406401260678444,-0.014032459379616 +3471,-0.0325426316487787,-0.0121473000241935 +3472,-0.00568423042214948,0.00260958051781615 +3473,-0.00337020391142237,-0.00618908477119281 +3474,-0.0300872807579591,-0.0090840272520817 +3475,0.0161149413207217,0.017295889901432 +3476,-0.00430994802867538,-0.01510286926368 +3477,0.0306931449339829,0.0163416347759195 +3478,0.0125441826279187,0.00166853914847126 +3479,0.00435879284931787,0.00461339739090971 +3480,-0.0131635074309979,0 +3481,0.00950535858442193,0.00110600921658986 +3482,-0.00720154204186683,-0.010430266538094 +3483,-0.00186742215206566,0.00445023178193954 +3484,0.00414205399470709,0.00772765437820255 +3485,-0.00818141326679442,0.0157552152163127 +3486,-0.0091159013511859,-0.000181162836101483 +3487,-0.00937501760525226,-0.0186346491026818 +3488,0.0321767792336116,0.0305848506528348 +3489,-0.00634088608675081,-0.00179177563533813 +3490,-0.000422870665071431,-0.000358487177657572 +3491,-0.022573948558019,-0.0147326482357221 +3492,0.00473439794670574,0.00524696942283348 +3493,-0.0264180773988337,-0.0223825190088325 +3494,-0.00622330175435726,0.0195864711568095 +3495,-0.0180107252784998,0.00108699273393124 +3496,0.00763425570807457,0.0165686795551634 +3497,-0.0216552847773367,-0.00771992804811619 +3498,-0.0278223524268824,-0.0290042484942869 +3499,0.0121122051222918,0.0127667513125387 +3500,-0.000932565487291806,0.00939468868634826 +3501,0.0127059938062242,0.00841995700465785 +3502,-0.00536889757816246,-0.00269448545696015 +3503,-0.0113274574049804,0.00500452180510239 +3504,0.0176567779594773,0.0106100443962872 +3505,-0.0132314386880358,-0.00426208481154174 +3506,-0.0195705677451915,-0.0149603640951695 +3507,0.000854257253996334,-0.0124087775987003 +3508,-0.0257034273751673,0.0045413261497062 +3509,-0.0199602985092442,-0.0185013879463717 +3510,0.00525992167141008,0.00305759590836631 +3511,0.015934233390178,-0.000573671139075943 +3512,0.01430572243203,0.00909435409424689 +3513,-0.0263887465488114,-0.0220759105746689 +3514,0.0214027136676863,0.0276784404504152 +3515,-0.0048623316837438,-0.00850476644571263 +3516,0.0013430829492398,0.00452845039321808 +3517,-0.0050882449089851,-0.00614106576862123 +3518,-0.0199114637990454,-0.00965437324475047 +3519,0.00550051016102624,0.00728382239922653 +3520,0.00712082079374297,0.0161352282724696 +3521,-0.0094368557502851,-0.00694573216862972 +3522,-0.0206392563302523,-0.0322641320754718 +3523,0.0194083553587619,-0.0161042944785277 +3524,0.00258799177200811,-0.00307692307692301 +3525,0.0104200082008208,-0.0151791135397693 +3526,-0.000210590592916953,-0.0026380073587258 +3527,-0.00763764742667804,0.008650171165765 +3528,-0.00608324459177952,-0.000402495480026134 +3529,0.00308544532578885,0.0160396237623762 +3530,0.0274213682473238,0.0115482481894696 +3531,0.0150836114426127,0.025371958236244 +3532,-0.0193226777618392,-0.00440695543987267 +3533,-0.00229072259172505,-0.00714008104978773 +3534,0.00867047921151359,0.0157645198190116 +3535,-0.0231280489359372,-0.0287221961703791 +3536,0.0146721751232502,0.00350469229936341 +3537,0.00682104161180155,0.0142033978580959 +3538,0.00154784845535659,-0.0155945227211408 +3539,-0.00227533349311539,-0.00825467751071781 +3540,0.0381975235073861,0.0323317028401787 +3541,0.0021836327543424,0.00698770525046827 +3542,0.00738916256157635,-0.0114613757960411 +3543,0.0146587901240891,-0.00615027880358027 +3544,-0.0111907231415317,-0.0195963162766278 +3545,-0.00831440174516871,0.0120039298352787 +3546,0.000890071176125196,0.0225207797123392 +3547,0.000494168241458399,-0.0151777332406866 +3548,0.0106591431515911,0.019219917090635 +3549,0.00253604182216279,0.00188072228251728 +3550,0.0196978864085314,0.00783732039559626 +3551,0.0131169103225733,0.0139834043784141 +3552,-0.00160678634385287,0.00567145993413826 +3553,0.00113288332954843,-0.0218732091279413 +3554,-9.43631349499907e-05,0.00686964339269136 +3555,0.00758992684042418,0.00388383576844837 +3556,-0.00555925767151386,-0.00185286266716943 +3557,-0.0043531655976751,0.00442719063691552 +3558,-0.00456313329093767,-0.0125139706291751 +3559,0.0231240527488856,0.0213854509483725 +3560,0.017159529338436,0.00617620356360036 +3561,-0.00522983769574886,0.00325911642223424 +3562,0.00909173577764771,0.00611840921360452 +3563,0.0101692311869358,-0.0025257081003067 +3564,-0.0119297424994034,-0.0159457291798803 +3565,0.0103641042750911,0.0101596155689335 +3566,-0.0222959091367614,-0.0121189866345755 +3567,0.00110438979921257,-0.000735042290887327 +3568,0.00330208227762108,-0.00202535440940242 +3569,0.0128577053086254,0.0062214270367273 +3570,0.0142806050135612,0.0126467213241814 +3571,0.00053520964380388,0.00018069002563778 +3572,-0.0204824764766951,0.00521115884236633 +3573,-0.0220505669319715,0.0143463870766275 +3574,-0.00533157776329328,-0.00124135487216448 +3575,0.00205351447923594,-0.0143910595430833 +3576,-0.0109464564410074,0.00340622092875966 +3577,-0.00570991614560508,0.00633279588691622 +3578,-0.00699572605645851,-0.0130249224927084 +3579,-0.0315300847510264,-0.0208416224111574 +3580,-0.0116279498960518,-0.000601624235043611 +3581,-0.00106790902464658,0.0146216555103407 +3582,0.0161798802269385,-0.0166734033080234 +3583,-0.0105106484656408,0.00180469223590727 +3584,-0.0101888033073532,0.00140168204648943 +3585,-0.00560825058662374,0.00893034349931229 +3586,0.000754391628899836,-0.00639103255442386 +3587,0.00674370598894685,0.0186201489611917 +3588,-0.00983673095153545,0.000587639580560943 +3589,-0.0240204349798732,0.00893028572821927 +3590,0.00198852193952243,-0.00841808894212656 +3591,0.0357903718296881,0.0144703833891421 +3592,-0.00417155854469056,-0.0261335191500106 +3593,0.0113155670752023,0.00590440846478229 +3594,-0.00382166678837577,-0.00973769872813989 +3595,0.0107120771821878,0.00592649162241192 +3596,0.0125479518821944,-0.0117929244811699 +3597,0.0150153418791554,0.0302384376817214 +3598,0.0172656188335991,0.0101688221444516 +3599,0.00786775190248975,-0.00443245335194547 +3600,-0.000597967127014804,0.00821867354740056 +3601,-0.00490683952626841,0.0128301886792453 +3602,-0.0142189926286715,-0.00283825933162761 +3603,-0.00757263602565866,-0.00705026676829273 +3604,0.00204245306459269,-0.0133230157690092 +3605,0.00719861118925104,0.00652215602297808 +3606,0.00403920028313845,-0.000575873342643903 +3607,-0.000909611867604336,-0.00115290159198888 +3608,0.00712493713748238,-0.00813642014987247 +3609,-0.0082970756187985,-0.00271948329448335 +3610,-0.015307233010365,-0.0267251900024967 +3611,0.00123130516346503,-0.00622109146212763 +3612,-0.0032942145696336,-0.0028175287345045 +3613,0.00420301370979969,0.0138916454433746 +3614,-0.0232875375372384,-0.00518647506111167 +3615,-0.00241854894676227,-0.00119834232075094 +3616,0.00844547978540384,0.0218792541879128 +3617,-0.00376767125794854,-0.00392227872436646 +3618,0.00572315308476901,0.0177229435561549 +3619,-0.01477619497201,-0.0289077431344208 +3620,0.0165615457446969,0.0204287827756631 +3621,0.00858057185210654,0.0217649778044127 +3622,0.0125522596768255,0.012311843357899 +3623,0.00302430913572127,-0.000195426114151741 +3624,-0.00947469227233801,0.00019538793024778 +3625,0.00565268507958431,0.00408725176941901 +3626,0.0042735354539601,0 +3627,0.00765409598676045,0.0175907842751584 +3628,0.00309345216250395,0.00551437535653173 +3629,0.00451647514917841,0.0116519265486173 +3630,-0.0056776606066587,0.00560641022636554 +3631,0.0194351450608853,0.00427994029475462 +3632,-0.00010125531586612,-0.000744897565271863 +3633,0.0105179102370447,0.004818347012942 +3634,0.000400530677865342,-0.0163872480693163 +3635,-0.00533037312682278,-0.0019713441213502 +3636,-0.00780454053093294,0.0136114725119321 +3637,-0.0135607977629257,0.00282037722545384 +3638,-0.00693077494425926,0.000528506008756487 +3639,0.0133218233974247,0.0003558085813167 +3640,-0.00124745227183049,0.00829218419195477 +3641,0.017350343686459,-0.00176737356778459 +3642,-0.0150267989559687,0 +3643,0.0123830039476038,0.00684569059424807 +3644,0.000755662583668702,0.00731831342251809 +3645,0.0149795306574377,0.00983436869969581 +3646,0.00821260473712454,0.0017223906007166 +3647,0.00404370010189685,0.00240549824045537 +3648,-0.00749998148148142,-0.00310239572561181 +3649,-0.000648568516631087,0.00480272735510676 +3650,0.00231096320946571,-0.0062133242356459 +3651,0.0118743420202499,0.00309704065893049 +3652,-0.00091429879998985,-0.0118384403175216 +3653,-0.00146489652568312,0.00208481580811646 +3654,-0.00128345248838557,0.000694392385221951 +3655,0.00256034196634658,0.000347119061907665 +3656,-0.00783337005191463,0.000866984597433135 +3657,0.00312352784792885,0.00380032827431908 +3658,-0.00759047493835481,0.00103540981819823 +3659,-0.00427627591335884,0.00378196677950718 +3660,-0.00589113510583239,-0.00241252804433106 +3661,-0.00112340385695575,0.00120480210687792 +3662,-0.00773584905660371,-0.00362755231693813 +3663,0.000942488236427671,-0.0074834668897227 +3664,0.00590279192627772,0.00225735370724084 +3665,0.00928246516432382,0.00138716841987746 +3666,-0.000278607250100482,-0.00104143376078058 +3667,0.00609084527417087,0.000867134928893508 +3668,-0.0269143677098474,-0.00400487550060938 +3669,-0.02317463463128,-0.0217043412507443 +3670,0.0219082412384628,0.0147239266384561 +3671,0.0232514596549733,-0.0091986557438291 +3672,0.034177329359685,-0.00479916476356777 +3673,0.0328805312797438,0.0162616019629585 +3674,-0.00565612609913191,0.00104805240174672 +3675,-0.0117978163092479,-0.00562093799402776 +3676,-8.80690323148725e-05,-0.00211228653208438 +3677,-0.000176107437002792,0.0164473170515 +3678,0.00933519431158969,0.00103773780698715 +3679,-0.0169461806134875,-0.00679087584885949 +3680,0.00150600641848003,-0.00931455151794193 +3681,0.00185691933351909,0.0181190505932864 +3682,0.00754717878579669,0.00137856283609442 +3683,-0.0157781868425743,-0.0109755571088655 +3684,0.00769573619560184,0.00347215289833862 +3685,-0.00471032717855476,-0.00313479634743282 +3686,0.004247814159292,-0.00314458409697475 +3687,0.000442308701221386,0.0069395733334417 +3688,0.00737550274278253,0.0017319535250448 +3689,0.00149043488498036,0.00103801039858154 +3690,0.017147823770414,0.00413511364343355 +3691,0.00214961301419743,-0.0148627734719841 +3692,0.00886307342297843,-0.0014007704184772 +3693,-0.0030773892183949,-0.00333807109409943 +3694,0.00552575037471102,0.00870776763175784 +3695,-0.000680510403730055,-0.00349522887984564 +3696,-0.000681041962364565,0.00763092265001722 +3697,-0.00298837082509296,-0.00225970801772481 +3698,-0.000512600384633561,-0.00489081222707418 +3699,0.00892481072801003,0.0219672131147542 +3700,0.00507397885835095,-0.000163928507495426 +3701,-0.0230124067138129,-0.0059376710219747 +3702,-0.0096959553713499,-0.00881868581759355 +3703,-0.00668309878048629,-0.00384164028464406 +3704,-0.00158534435806454,0.000834429266836753 +3705,-0.0183873265474451,-0.00200667227435907 +3706,0.000896119756111465,-0.00622579505300353 +3707,-0.0160247106250622,-0.00371560553480159 +3708,-0.00909597607849962,-0.00851643686793454 +3709,0.0142197984160928,0.0283018711784796 +3710,0.00585263831897415,0.000826905890079344 +3711,-0.00162338568605833,-0.00498592338327822 +3712,-0.0286668148374913,-0.025042537903875 +3713,0.00590241630545055,0.00542187394103698 +3714,-0.0257307825724226,-0.015485220500434 +3715,0.0130706935573645,0.0127399356674017 +3716,0.0261841717644181,0.0130763281449681 +3717,-0.000363810833028069,0.0163258083167185 +3718,0.000999463946928265,-0.0048053191319079 +3719,0.0149467909707297,0.00837993742392475 +3720,0.000626118051177578,0.00425389404865669 +3721,-0.00512451662884525,-0.0119204797377324 +3722,0.00500937467564749,0.00214764583095394 +3723,-0.00197186519673757,0.00131994718165407 +3724,-0.000986910111133205,0.00785724341136039 +3725,-0.00850526624607122,-0.0137736811740352 +3726,-0.00940724284240104,-0.0179053544272745 +3727,0.00373070056905004,0.000843864978902948 +3728,-0.00724040869544125,0.0161076217849947 +3729,0.0076398001175025,-0.00450375305248124 +3730,0.0097271188843297,0.0231383089968765 +3731,0.00972176213730563,-0.00590068860516922 +3732,0.0160596230643165,0.0154914149509212 +3733,-0.00573692835648021,0.0032169375331168 +3734,0.0164076653110919,0.0128612575420768 +3735,0,-0.00478621569878745 +3736,0.00543945777931261,-0.00159792260792832 +3737,0.00129344656985907,-0.00449443024870676 +3738,0.00574415299849245,0.0207481927184563 +3739,0.00265068839634081,-0.00125901792163968 +3740,0.000939697607033932,0 +3741,-0.0066213517359931,0.000157324943467002 +3742,0.00197387578030919,-0.00490191319095788 +3743,0.00631080494097208,0.00063206385322477 +3744,-0.00428228838159835,-0.00460385760902182 +3745,-0.000256994767660579,-0.00143084256181735 +3746,-0.00785704541529963,-0.0122304958517942 +3747,0.00284117085077629,0.00703104803352351 +3748,-0.00112053959111891,-0.00449443024870676 +3749,0.00505963463631214,0 +3750,0.0110253833932531,0.00859326861871425 +3751,0.00907634270235049,-0.00319286403564598 +3752,0.0010074972629712,-0.000319386782487862 +3753,0.00534445929018792,0.00902041476531754 +3754,-0.00419287211740042,-0.0092636638034873 +3755,-0.00176410448786871,0.0014354066756714 +3756,0.00799999166666663,-0.00271872705451353 +3757,-8.33569478015998e-05,-0.000479983999999945 +3758,-0.00175320589207883,-0.00321028897608811 +3759,0.00183334166666664,0.00701311740474597 +3760,0.000666239162787433,0.00349423449006101 +3761,-0.000916904218413709,0.00881613664987405 +3762,0.0156711195193089,0.0025125628140703 +3763,0.000492086263866093,0.00917997553352934 +3764,8.19598216143402e-05,0.0229553363173508 +3765,-0.00263092993416742,-0.0099800710876741 +3766,-0.00230736715792944,-0.00742451639831353 +3767,-0.00171167044045489,-0.0064904861956779 +3768,0.00426094663370089,0.00800882537688442 +3769,0.00928690663142489,-0.000628551235520865 +3770,0.00942755272126166,-0.00331072047926854 +3771,0.00386242068340617,-0.00142090306283543 +3772,0.00286969495347661,0.0112394321336068 +3773,-0.00227068582616888,-0.000937468749999892 +3774,0.0087778382582706,0.0111248607675392 +3775,0.0128129976947711,-0.00232307573176403 +3776,0.00361590301881425,-0.000619882234927503 +3777,-0.00118203910533994,-0.000155021705906156 +3778,0.00272616414142223,0.0015476012899596 +3779,0.0071689540710085,-0.00201589399956249 +3780,0.00299032891116393,-0.00201984148508641 +3781,-0.00424816526952445,0.00402355289274747 +3782,0.000951302474716617,0 +3783,0.00197173018186023,-0.00607192872153533 +3784,0.000438075755964827,-0.00390751797436698 +3785,0.0200299602275537,0.0147829068437665 +3786,-0.00597284080447707,-0.0145289793929394 +3787,0.00586630423427041,0.00373537743190661 +3788,-0.00315776526934872,0.000311140515534855 +3789,0.00129019491713881,0.00201871111743129 +3790,-0.00374103597122302,0.00907825847294224 +3791,-0.00230752102792509,-0.00401660726016039 +3792,0.00330606585673465,0.00308019405513646 +3793,0.000431020124231808,-0.00339979915623257 +3794,-0.00151084245230439,-0.00465758393680577 +3795,0.010465626703265,0.00525090347490346 +3796,0.00163476435233829,-0.00170174816989086 +3797,-0.00500033555967082,0.00354561414156238 +3798,0.0103916437668492,0.000924025874018325 +3799,-0.0115847471849182,-0.0112132224141603 +3800,0.0111724085867968,0.0126095650101426 +3801,-0.00354811245455737,-0.00246640962849974 +3802,-0.00199089165238122,0.00169282848448006 +3803,0.00170362004175129,0.00184324122406276 +3804,0.0203059661966766,0.00291013933358654 +3805,0.00222031648002753,0.00274935080572234 +3806,-0.00132010011283745,0.00365238173264924 +3807,-0.00187936093890134,0.00227758879019757 +3808,0.000278308982845767,-0.00472918361269935 +3809,0.00739108220236012,0.00273847545693848 +3810,-0.0052076099095234,-0.00259312088447598 +3811,-0.00250591667810349,0.00258641400031586 +3812,-0.00223251017810809,-0.000761312423873167 +3813,-0.00118738564206742,-0.00228904322125815 +3814,-0.0108733527192912,-0.000763530814132786 +3815,0.00119885752047546,-0.00383259218921085 +3816,-0.00531726326868635,-0.00431110104593231 +3817,0.00549953457661238,0.008094165786767 +3818,-0.00446179187949991,-0.00137641843365058 +3819,-0.00369636071847118,-0.00538127297999272 +3820,0.0123561427638845,0.00702288549618315 +3821,-0.00119489699318482,0.0135542465796914 +3822,0.00953769847909835,0.0167332595399565 +3823,0.00615789113788076,0.00574203491584324 +3824,-0.00591596632385699,-0.00132678751800735 +3825,0.000765004557723385,0.00644492484744082 +3826,-0.000974584099182192,0.00277537252082041 +3827,0.0199891387639633,0.0136868598941444 +3828,0.00630461007065993,-0.001587315948601 +3829,-0.00305995516197407,-0.00318472775956217 +3830,-0.00361699995643898,-0.00392390652300266 +3831,0.016313157128141,0.00275365217391314 +3832,0.0264687806832489,-0.000870292983165175 diff --git a/post/google-data-analytics-certificate/index.html b/post/google-data-analytics-certificate/index.html index 0b7318d..d2f986b 100644 --- a/post/google-data-analytics-certificate/index.html +++ b/post/google-data-analytics-certificate/index.html @@ -393,16 +393,16 @@

See also

diff --git a/post/index.html b/post/index.html index 54c49b4..7f9b018 100644 --- a/post/index.html +++ b/post/index.html @@ -216,7 +216,7 @@

Posts

- -
- -

Python - Handling Exceptions

- - - -
- - -
- - From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 -Try, except, finally -import time as time def causeError(): start = time.time() #set start timer try: #delay run by 0.5 secs time.sleep(0.5) return 1/0 except Exception: print('There was some sort of error!') finally: print(f'Function took {time.time() - start} seconds to execute') causeError() ## There was some sort of error! ## Function took 0.5048558712005615 seconds to execute Custom Decorators *args **kwargs are multiple arguments or string arguments. - [Read More] - -
- - -
- - Python  - -
- - -
- -
- -

Python - Multithreading/Multiprocessing

- - - -
- - -
- - From: LinkedIn course ‘Python Essential Training’ by Ryan Mitchell https://www.linkedin.com/learning/python-essential-training-14898805 -import threading import time Threads -def longSquare(num): time.sleep(1) return num**2 [longSquare(n) for n in range(0, 5)] ## [0, 1, 4, 9, 16] t1 = threading.Thread(target=longSquare, args=(1,)) #args is tuple t2 = threading.Thread(target=longSquare, args=(2,)) t1.start() t2.start() t1.join() t2.join() def longSquare(num, results): time.sleep(1) results[num] = num**2 results = {} t1 = threading.Thread(target=longSquare, args=(1, results)) #args are tuples t2 = threading.Thread(target=longSquare, args=(2, results)) t1. - [Read More] - -
- - -
- - Python  - -
- -
diff --git a/post/index.xml b/post/index.xml index 6347718..af9405c 100644 --- a/post/index.xml +++ b/post/index.xml @@ -5,7 +5,27 @@ https://www.codelooper.com/post/ Recent content in Posts on Teddy's online desktop Hugo -- gohugo.io - Wed, 08 Nov 2023 00:00:00 +0000 + Tue, 12 Dec 2023 00:00:00 +0000 + + ChatGPT python code for distribution fitting + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + Tue, 12 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/2023-12-12-chatgpt-python-code-for-distribution-fitting/ + import numpy as np import scipy.stats as stats import matplotlib.pyplot as plt from scipy.stats import norm, expon, lognorm, weibull_min, gamma, beta, gumbel_r # Your data data = np.array([0.1026, 0.284, 0.0259, 0.0364, 0.0401, 0.0297, 0.1035, 0.0533, 0.0742, 0.0246, 0.089, 0.1215, 0.1729, 0.0212, 0.0273, 0.065, 0.0853, 0.0399, 0.1926, 0.1238, 0.4324, 0.1324, 0.0486, 0.0411, 0.0414, 0.0329, 0.02, 0.0749, 0.0688, 0.1432, 0.1769, 0.0415, 0.0939, 0.2315, 0.4017, 0.0751, 0.0669, 0.242, 0.1931, 0.0839, 0.0601, 0.0794, 0. + + + + Copula Example + https://www.codelooper.com/post/copula-example/ + Fri, 08 Dec 2023 00:00:00 +0000 + + https://www.codelooper.com/post/copula-example/ + Trying an introduction to copulas exercise, from (R-excerises), using the dataset (https://www.kaggle.com/datasets/gtouzin/samplestocksreturn) +Exercise 1 We’ll start by fitting the margin. First, do a histogram of both Apple and Microsoft returns to see the shape of both distributions. +returns &lt;- read.csv(&quot;returns_00_17.csv&quot;) hist(returns$Apple) hist(returns$Microsoft) Exercise 2 Both distributions seems symmetric and have a domain which contain positive and negative values. Knowing those facts, use the fitdist() function to see how the normal, logistic and Cauchy distribution fit the Apple returns dataset. + + Random Number Generator https://www.codelooper.com/post/random-number-generator-20231108/ diff --git a/post/page/2/index.html b/post/page/2/index.html index 1d186b6..699c63c 100644 --- a/post/page/2/index.html +++ b/post/page/2/index.html @@ -216,7 +216,7 @@

Posts

- -

Datacamp's tidyverse course using gapminder dataset

+
+

Codecademy - Pandas Lesson

@@ -514,13 +508,13 @@

Datacamp's tidyverse course using gapminder dataset -  Posted on July 19, 2022 +  Posted on July 28, 2022 -  |  6 minutes +  |  25 minutes -  |  1212 words +  |  5258 words @@ -534,16 +528,17 @@

Datacamp's tidyverse course using gapminder dataset
- Datacamp’s Tidyverse course using Gapminder dataset -library(gapminder) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union head(gapminder) ## # A tibble: 6 × 6 ## country continent year lifeExp pop gdpPercap ## <fct> <fct> <int> <dbl> <int> <dbl> ## 1 Afghanistan Asia 1952 28.8 8425333 779. ## 2 Afghanistan Asia 1957 30. - [Read More] + You’re getting ready to staff the clinic for March this year. You want to know how many visits took place in March last year, to help you prepare. +Write a command that will produce a Series made up of the March data from df from all four clinic sites and save it to the variable march. +#import /;../,codecademylib3 import pandas as pd df = pd.DataFrame([ ['January', 100, 100, 23, 100], ['February', 51, 45, 145, 45], ['March', 81, 96, 65, 96], ['April', 80, 80, 54, 180], ['May', 51, 54, 54, 154], ['June', 112, 109, 79, 129]], columns=['month', 'clinic_east', 'clinic_north', 'clinic_south', 'clinic_west']) print(df) ## month clinic_east clinic_north clinic_south clinic_west ## 0 January 100 100 23 100 ## 1 February 51 45 145 45 ## 2 March 81 96 65 96 ## 3 April 80 80 54 180 ## 4 May 51 54 54 154 ## 5 June 112 109 79 129 # integer location within dataframe # locations are zero indexed and doesn't include the ending integer march = df. + [Read More]
- R  + Python 
@@ -551,8 +546,8 @@

Datacamp's tidyverse course using gapminder dataset
- -

Global size of agriculture insurance market in 2020 and beyond

+
+

Macbook air m1 power consumption

@@ -562,13 +557,13 @@

Global size of agriculture insurance market in 2020 and b

Global size of agriculture insurance market in 2020 and b

- People often ask me how large is the world wide agriculture insurance market. U.S., Canada, China, and India have large government subsidized programs and provide reports on premiums. However, the reports do not contain privately sold products and premiums. These are mostly hail and top-up programs that complement the government subsidized crop and livestock insurance programs. -Roman Shynkarenko provided the post below on Linkedin for the agriculture insurance market in 2020 according to Allianz (32bn world wide in 2020). - [Read More] + + + +

I found that rsessions-arm64 was running the cpu at 100% and using almost 7 watts (it’s around 20 mW when idle), and ran my laptop battery down very quickly. A restart seem to have solved the problem.

+

Using command “sudo powermetrics” in terminal opens up the powermetrics program that’s included in osx and provides data on power usage as shown in the following screenshot:

+
+ +

powermetrics

+
+
@@ -601,8 +601,8 @@

Global size of agriculture insurance market in 2020 and b

- -

Google Data Analytics Certificate

+
+

Datacamp's tidyverse course using gapminder dataset

@@ -612,13 +612,13 @@

Google Data Analytics Certificate

- I’ve finally completed the Coursera Google Data Analytics Certificate. -I think the course is great for beginners in data analytics. For me it was a great refresher on SQL and R but the other sections were not all that useful. The course did motivate me to learn R (again) and this blog site is probably a result of that. -I think the course could use more on statistical thinking and spending more time on probability since data analysts could really use that in their work. - [Read More] + Datacamp’s Tidyverse course using Gapminder dataset +library(gapminder) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union head(gapminder) ## # A tibble: 6 × 6 ## country continent year lifeExp pop gdpPercap ## <fct> <fct> <int> <dbl> <int> <dbl> ## 1 Afghanistan Asia 1952 28.8 8425333 779. ## 2 Afghanistan Asia 1957 30. + [Read More]
- Education  - - Data Analytics  - R  - Google  -
- -

Ideas from programming

+
+

Global size of agriculture insurance market in 2020 and beyond

@@ -670,10 +663,10 @@

Ideas from programming

 Posted on July 18, 2022 -  |  1 minutes +  |  5 minutes -  |  49 words +  |  1025 words @@ -687,31 +680,18 @@

Ideas from programming

-
    -
  • Version Control and GitHub + Main/Branches, Push/Pull/Merge
  • -
  • Functions/Modules -
      -
    • Methods should be deep.
    • -
    • Write the interface first
    • -
    -
  • -
  • Try to minimize exceptions -
      -
    • define them away
    • -
    -
  • -
  • Be strategic + Invest in building the future/don’t introduce bad code today
  • -
  • Write the unit test before the useful code
  • -
  • Make sure you do input validation
  • -
- + People often ask me how large is the world wide agriculture insurance market. U.S., Canada, China, and India have large government subsidized programs and provide reports on premiums. However, the reports do not contain privately sold products and premiums. These are mostly hail and top-up programs that complement the government subsidized crop and livestock insurance programs. +Roman Shynkarenko provided the post below on Linkedin for the agriculture insurance market in 2020 according to Allianz (32bn world wide in 2020). +
[Read More]
@@ -719,8 +699,8 @@

Ideas from programming

- -

Running Shiny R within blogdown

+
+

Google Data Analytics Certificate

@@ -736,7 +716,7 @@

Running Shiny R within blogdown

 |  1 minutes -  |  22 words +  |  174 words @@ -750,22 +730,23 @@

Running Shiny R within blogdown

- - - -

I just learned that I could embed the R Shiny app into blogdown from this post. So here’s an attempt at that.

- - + I’ve finally completed the Coursera Google Data Analytics Certificate. +I think the course is great for beginners in data analytics. For me it was a great refresher on SQL and R but the other sections were not all that useful. The course did motivate me to learn R (again) and this blog site is probably a result of that. +I think the course could use more on statistical thinking and spending more time on probability since data analysts could really use that in their work. + [Read More]
+ Education  + + Data Analytics  + R  - R Shiny  + Google 
diff --git a/post/page/3/index.html b/post/page/3/index.html index 7f20c48..11acfde 100644 --- a/post/page/3/index.html +++ b/post/page/3/index.html @@ -216,7 +216,7 @@

Posts