[docs]defload_weather(nrows=None,return_single_table=False):""" Load the Australian daily-min-temperatures weather dataset. Args: nrows (int): Passed to nrows in ``pd.read_csv``. return_single_table (bool): Exit the function early and return a dataframe. """filename="daily-min-temperatures.csv"print("Downloading data ...")url="https://oss.alteryx.com/datasets/{}?library=featuretools&version={}".format(filename,ft.__version__,)data=pd.read_csv(url,index_col=None,nrows=nrows)ifreturn_single_table:returndataes=make_es(data)returnes