Source code for pyFTS.data.Malaysia

"""
Hourly Malaysia eletric load and tempeature
"""


from pyFTS.data import common
import pandas as pd
import numpy as np


[docs]def get_data(field: str='load') -> np.ndarray: """ Get the univariate time series data. :param field: dataset field to load :return: numpy array """ dat = get_dataframe() return np.array(dat[field])
[docs]def get_dataframe() -> pd.DataFrame: """ Get the complete multivariate time series data. :return: Pandas DataFrame """ df = common.get_dataframe("malaysia.csv","https://query.data.world/s/e5arbthdytod3m7wfcg7gmtluh3wa5", sep=";") return df