Question 1135298: Exercise 1 : Confidence Intervals
a. Visualizing Confidence Intervals
Using the lecture series and the seaborn library, plot the regression line between the parameters and the 95% confidence interval.
start = '2014-01-01'
end = '2015-01-01'
asset = get_pricing('KO', fields='price', start_date=start, end_date=end)
benchmark = get_pricing('PEP', fields='price', start_date=start, end_date=end)
returns1 = asset.pct_change()[1:]
returns2 = benchmark.pct_change()[1:]
Answer by ikleyn(52817) (Show Source):
You can put this solution on YOUR website! .
Nonsense.
Not an appropriate post/problem/request for this forum.
Do not spend your time for nothing posting such requests - they make no sense.
Have a nice day / afternoon / evening / night / morning etc.
|
|
|