33 lines
549 B
Python
33 lines
549 B
Python
"""
|
|
FOREX market GBP-USD pair.
|
|
|
|
Daily averaged quotations, by business day, from 2016 to 2018.
|
|
"""
|
|
|
|
|
|
from pyFTS.data import common
|
|
import pandas as pd
|
|
import numpy as np
|
|
|
|
|
|
def get_data():
|
|
"""
|
|
Get the univariate time series data.
|
|
|
|
:return: numpy array
|
|
"""
|
|
dat = get_dataframe()
|
|
return np.array(dat["Avg"])
|
|
|
|
|
|
def get_dataframe():
|
|
"""
|
|
Get the complete multivariate time series data.
|
|
|
|
:return: Pandas DataFrame
|
|
"""
|
|
df = pd.read_csv('https://query.data.world/s/sw4mijpowb3mqv6bsat7cdj54hyxix')
|
|
|
|
return df
|
|
|